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