diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-10-02 14:02:50 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-10-02 14:02:50 +0530 |
| commit | 5364332c05749268000c2ac3f0e6880f965e5fdc (patch) | |
| tree | 5f200ce04853d299f6f67b6ca545b5ed07a809b8 /specs/Specs | |
| download | daffm-5364332c05749268000c2ac3f0e6880f965e5fdc.tar.gz daffm-5364332c05749268000c2ac3f0e6880f965e5fdc.zip | |
Init setup with simple tui
Diffstat (limited to 'specs/Specs')
| -rw-r--r-- | specs/Specs/FooSpec.hs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/specs/Specs/FooSpec.hs b/specs/Specs/FooSpec.hs new file mode 100644 index 0000000..295ef79 --- /dev/null +++ b/specs/Specs/FooSpec.hs @@ -0,0 +1,10 @@ +module Specs.FooSpec where + +import Test.Hspec + +test :: SpecWith () +test = do + describe "stuff" $ do + context "when things" $ do + it "does stuf" $ do + 1 `shouldBe` 1 |
