aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2021-10-28 16:38:22 +0100
committerYann Herklotz <git@yannherklotz.com>2021-10-28 16:38:22 +0100
commitd04cc0b59c49511b3ebae20b0b2ce98d61f04c64 (patch)
treecd7365ddfb759ece64b44fa06f1f687a09ea76ed /test
downloadgsa-parser-d04cc0b59c49511b3ebae20b0b2ce98d61f04c64.tar.gz
gsa-parser-d04cc0b59c49511b3ebae20b0b2ce98d61f04c64.zip
Initial commit
Diffstat (limited to 'test')
-rw-r--r--test/Spec.hs8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/Spec.hs b/test/Spec.hs
new file mode 100644
index 0000000..74cfd56
--- /dev/null
+++ b/test/Spec.hs
@@ -0,0 +1,8 @@
+import Test.Hspec
+
+main :: IO ()
+main =
+ hspec $
+ describe "gsa-parser-test" $
+ it "works" $
+ 2 + 2 `shouldBe` (4 :: Int)