summaryrefslogtreecommitdiff
path: root/tests/TestSuite.hs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/TestSuite.hs')
-rw-r--r--tests/TestSuite.hs3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/TestSuite.hs b/tests/TestSuite.hs
index cb6113d..ba77139 100644
--- a/tests/TestSuite.hs
+++ b/tests/TestSuite.hs
@@ -3,6 +3,7 @@ module TestSuite where
import Test.Framework (defaultMain, testGroup)
import qualified Hakyll.Core.DirectedGraph.Tests
+import qualified Hakyll.Core.DependencyAnalyzer.Tests
import qualified Hakyll.Core.Identifier.Tests
import qualified Hakyll.Core.Routes.Tests
import qualified Hakyll.Web.Page.Tests
@@ -14,6 +15,8 @@ main :: IO ()
main = defaultMain
[ testGroup "Hakyll.Core.DirectedGraph.Tests"
Hakyll.Core.DirectedGraph.Tests.tests
+ , testGroup "Hakyll.Core.DependencyAnalyzer.Tests"
+ Hakyll.Core.DependencyAnalyzer.Tests.tests
, testGroup "Hakyll.Core.Identifier.Tests"
Hakyll.Core.Identifier.Tests.tests
, testGroup "Hakyll.Core.Routes.Tests"