diff options
author | Ben Sima <ben@bsima.me> | 2021-12-21 18:48:16 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2021-12-21 18:48:16 -0500 |
commit | 8e2eede487b24908c89d60bce272e4269135e4ec (patch) | |
tree | b35467c72efe19b0d62e56abcc2aefe0840ccc42 /Biz/Test.hs | |
parent | c28c544b933cfb3ef3152be922248e9bbe89811e (diff) |
Extract repl program from bild
This is basically building on top of bild's analysis, which is great becuase it
means that bild is becoming a useful tool rather than a monolithic do-everything
job runner. The eventual goal is for the bild analysis to be much more useful,
maybe even provide data to remote repls or language-server or whatever.
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" [] |