about summary refs log tree commit diff
path: root/test/EntryPoint.hs
diff options
context:
space:
mode:
Diffstat (limited to 'test/EntryPoint.hs')
-rw-r--r--test/EntryPoint.hs20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/EntryPoint.hs b/test/EntryPoint.hs
new file mode 100644
index 0000000..68931cd
--- /dev/null
+++ b/test/EntryPoint.hs
@@ -0,0 +1,20 @@
+module Main where
+
+import Test.Tasty
+
+-- library tests
+import Test.Gophermap
+
+-- server executable tests
+import Test.FileTypeDetection
+import Test.Integration
+
+main :: IO ()
+main = defaultMain tests
+
+tests :: TestTree
+tests = testGroup "tests"
+  [ gophermapTests
+  , fileTypeDetectionTests
+  , integrationTests
+  ]