diff options
author | Ben Sima <ben@bsima.me> | 2021-02-05 21:56:20 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2021-02-05 21:56:20 -0500 |
commit | 753cdfe8c18b470da4a4807815d0aaade53f1d16 (patch) | |
tree | 1194557e0e0ab2e825c2786bf4bcccc33e86da27 /Biz/Pie.hs | |
parent | 1c75a8ee4c9914c7d482b38195b813b12ef4f834 (diff) |
Add 'tidy' to Plan
This is supposed to be how to cleanup the database and any other local files.
Should only be used before/after test, so maybe I can find a way to enforce this
constraint somehow in the code.
Diffstat (limited to 'Biz/Pie.hs')
-rw-r--r-- | Biz/Pie.hs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -63,7 +63,7 @@ import qualified Text.Parsec as Parsec import qualified Text.Parsec.String as Parsec main :: IO () -main = Cli.main <| Cli.Plan help move test +main = Cli.main <| Cli.Plan help move test pure test :: Test.Tree test = Test.group "Biz.Pie" [Test.unit "id" <| 1 @=? (1 :: Integer)] |