summaryrefslogtreecommitdiff
path: root/tests/TestSuite.hs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/TestSuite.hs')
-rw-r--r--tests/TestSuite.hs26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/TestSuite.hs b/tests/TestSuite.hs
new file mode 100644
index 0000000..8787bbd
--- /dev/null
+++ b/tests/TestSuite.hs
@@ -0,0 +1,26 @@
+module TestSuite where
+
+import Test.Framework (defaultMain, testGroup)
+
+import qualified Hakyll.Core.DirectedGraph.Tests
+import qualified Hakyll.Core.Identifier.Tests
+import qualified Hakyll.Core.Routes.Tests
+import qualified Hakyll.Web.Page.Tests
+import qualified Hakyll.Web.RelativizeUrls.Tests
+import qualified Hakyll.Web.Template.Tests
+
+main :: IO ()
+main = defaultMain
+ [ testGroup "Hakyll.Core.DirectedGraph.Tests"
+ Hakyll.Core.DirectedGraph.Tests.tests
+ , testGroup "Hakyll.Core.Identifier.Tests"
+ Hakyll.Core.Identifier.Tests.tests
+ , testGroup "Hakyll.Core.Routes.Tests"
+ Hakyll.Core.Routes.Tests.tests
+ , testGroup "Hakyll.Web.Page.Tests"
+ Hakyll.Web.Page.Tests.tests
+ , testGroup "Hakyll.Web.RelativizeUrls.Tests"
+ Hakyll.Web.RelativizeUrls.Tests.tests
+ , testGroup "Hakyll.Web.Template.Tests"
+ Hakyll.Web.Template.Tests.tests
+ ]