Module

Test.MiraculixLite.Assertion

#Assertion

newtype Assertion

#assertEq

assertEq :: forall a. Show a => Eq a => a -> a -> Assertion

Asserts that the specified actual value is equal to the expected value (with the actual value on the left-hand side).

#assertLt

assertLt :: forall a. Show a => Ord a => a -> a -> Assertion

Asserts that the specified value is lower than another value

#assertGt

assertGt :: forall a. Show a => Ord a => a -> a -> Assertion

Asserts that the specified value is greater than another value

#assert

assert :: Boolean -> Array String -> Assertion

Asserts that the specified condition holds.

#isSuccess

#(@?=)

Operator alias for Test.MiraculixLite.Assertion.assertEq (right-associative / precedence 1)

Modules