From 52c687ebd389ae4b43096859e5137e10b4b68c78 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Fri, 30 Nov 2018 22:06:33 +0000 Subject: Rename the Test file --- tests/test.hs | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 tests/test.hs (limited to 'tests/test.hs') 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 -- cgit