packages feed

Zora-1.1.23: Tests/test-zora.hs

{-# 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