]> gitweb.michael.orlitzky.com - mailbox-count.git/blobdiff - test/TestSuite.hs
Move most of the report functionality into its own module.
[mailbox-count.git] / test / TestSuite.hs
diff --git a/test/TestSuite.hs b/test/TestSuite.hs
new file mode 100644 (file)
index 0000000..50d56b4
--- /dev/null
@@ -0,0 +1,9 @@
+import Test.Tasty ( TestTree, defaultMain, testGroup )
+
+import Report ( report_tests )
+
+tests :: TestTree
+tests = testGroup "All tests" [ report_tests ]
+
+main :: IO ()
+main = defaultMain tests