diff options
author | Ben Sima <ben@bsima.me> | 2021-01-26 19:05:58 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2021-01-26 19:50:06 -0500 |
commit | 82dbbc0eed18c86aae1a8f1f92a0c98684e63409 (patch) | |
tree | 66319a88e1f1f4383a15ac070079c3459b0fc7f8 /Biz/Test.hs | |
parent | 0ec6b06acee62b57a50ed9718b8da31fced18c4d (diff) |
Create Biz.Log library, extracted from Biz.Bild
Diffstat (limited to 'Biz/Test.hs')
-rw-r--r-- | Biz/Test.hs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Biz/Test.hs b/Biz/Test.hs index 7571008..db71831 100644 --- a/Biz/Test.hs +++ b/Biz/Test.hs @@ -9,6 +9,7 @@ module Biz.Test unit, prop, with, + assertFailure, (@=?), (@?=), (@?!=), @@ -32,6 +33,9 @@ unit = HUnit.testCase prop :: QuickCheck.Testable a => Tasty.TestName -> a -> Tasty.TestTree prop = QuickCheck.testProperty +assertFailure :: String -> HUnit.Assertion +assertFailure = HUnit.assertFailure + with :: -- | Startup IO a -> |