aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test.hs
diff options
context:
space:
mode:
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