diff options
Diffstat (limited to 'Biz/Test.hs')
-rw-r--r-- | Biz/Test.hs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Biz/Test.hs b/Biz/Test.hs index 31a8831..b6c2816 100644 --- a/Biz/Test.hs +++ b/Biz/Test.hs @@ -4,6 +4,7 @@ module Biz.Test ( Tree, run, group, + none, unit, prop, with, @@ -97,3 +98,7 @@ infixl 2 @=? a @?= b = a HUnit.@?= b infixr 2 @?= + +-- | For usage in 'Biz.Cli.Plan' when you have no tests. +none :: Tree +none = group "none" [] |