chell-hunit-0.3.0.2: HUnit support for Chell
Safe HaskellSafe-Inferred
LanguageGHC2021

Test.Chell.HUnit

Synopsis

Documentation

hunit :: String -> Assertion -> Test Source #

Convert a sequence of HUnit assertions (embedded in IO) to a Chell Test.

import Test.Chell
import Test.Chell.HUnit
import Test.HUnit

test_Addition :: Test
test_addition = hunit "addition" $ do
   1 + 2 @?= 3
   2 + 3 @?= 5