aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test.hs
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-11-30 22:06:33 +0000
committerYann Herklotz <ymherklotz@gmail.com>2018-11-30 22:06:33 +0000
commit52c687ebd389ae4b43096859e5137e10b4b68c78 (patch)
treee3f24730c4d0e70126aa856760e16406595b4e81 /tests/test.hs
parent7fde58742352f17b0cc2bf34f8815067aaa8b7da (diff)
downloadverismith-52c687ebd389ae4b43096859e5137e10b4b68c78.tar.gz
verismith-52c687ebd389ae4b43096859e5137e10b4b68c78.zip
Rename the Test file
Diffstat (limited to 'tests/test.hs')
-rw-r--r--tests/test.hs19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/test.hs b/tests/test.hs
deleted file mode 100644
index b1958c3..0000000
--- a/tests/test.hs
+++ /dev/null
@@ -1,19 +0,0 @@
-module Main where
-
-import Test.Tasty
-import Test.Tasty.HUnit
-import Test.Tasty.QuickCheck as QC
-
-unitTests = testGroup "Unit tests"
- [ testCase "List comparison (different length)" $
- [1, 2, 3] `compare` [1,2] @?= GT
-
- -- the following test does not hold
- , testCase "List comparison (same length)" $
- [1, 2, 3] `compare` [1,2,2] @?= LT
- ]
-
-tests :: TestTree
-tests = testGroup "Tests" [unitTests]
-
-main = defaultMain tests