{-# LANGUAGE ScopedTypeVariables #-} module Main (main) where -- imports import Test.Tasty import Test.Tasty.HUnit import qualified Zora.List as ZL testTakeWhileAndLast :: Assertion testTakeWhileAndLast = do 1 @?= 2 tests :: TestTree tests = testGroup "unit tests" [ testCase "Testing `testTakeWhileAndLast`" testTakeWhileAndLast ] main :: IO () main = defaultMain tests