summaryrefslogtreecommitdiff
path: root/tests/TestSuite.hs
diff options
context:
space:
mode:
authorJasper Van der Jeugt <jaspervdj@gmail.com>2011-02-09 19:28:53 +0100
committerJasper Van der Jeugt <jaspervdj@gmail.com>2011-02-09 19:28:53 +0100
commitd9e0c3e86b03834a03e7ddf37b70cc141eccfe1c (patch)
tree588592f8112fa4380fb4703095e4bf5c4d7f2d0f /tests/TestSuite.hs
parent002cf4de32db979d515c2a9cdcd8c8f42859a797 (diff)
downloadhakyll-d9e0c3e86b03834a03e7ddf37b70cc141eccfe1c.tar.gz
Some tests for the Page module
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 aaf4481..5d401d2 100644
--- a/tests/TestSuite.hs
+++ b/tests/TestSuite.hs
@@ -5,6 +5,7 @@ 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.Template.Tests
main :: IO ()
@@ -15,6 +16,8 @@ main = defaultMain
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.Template.Tests"
Hakyll.Web.Template.Tests.tests
]