summaryrefslogtreecommitdiff
path: root/tests/TestSuite.hs
diff options
context:
space:
mode:
authorJasper Van der Jeugt <jaspervdj@gmail.com>2011-02-09 18:11:24 +0100
committerJasper Van der Jeugt <jaspervdj@gmail.com>2011-02-09 18:11:24 +0100
commit002cf4de32db979d515c2a9cdcd8c8f42859a797 (patch)
tree6992a3f05e693116ae6802ef48448a5a03aded1e /tests/TestSuite.hs
parent7da7e0b96c245a14122896c24dcee52f038e583a (diff)
downloadhakyll-002cf4de32db979d515c2a9cdcd8c8f42859a797.tar.gz
Add hamlet templates and restructure tests
Diffstat (limited to 'tests/TestSuite.hs')
-rw-r--r--tests/TestSuite.hs9
1 files changed, 6 insertions, 3 deletions
diff --git a/tests/TestSuite.hs b/tests/TestSuite.hs
index 68c4f28..aaf4481 100644
--- a/tests/TestSuite.hs
+++ b/tests/TestSuite.hs
@@ -4,7 +4,8 @@ import Test.Framework (defaultMain, testGroup)
import qualified Hakyll.Core.DirectedGraph.Tests
import qualified Hakyll.Core.Identifier.Tests
-import qualified Hakyll.Core.Route.Tests
+import qualified Hakyll.Core.Routes.Tests
+import qualified Hakyll.Web.Template.Tests
main :: IO ()
main = defaultMain
@@ -12,6 +13,8 @@ main = defaultMain
Hakyll.Core.DirectedGraph.Tests.tests
, testGroup "Hakyll.Core.Identifier.Tests"
Hakyll.Core.Identifier.Tests.tests
- , testGroup "Hakyll.Core.Route.Tests"
- Hakyll.Core.Route.Tests.tests
+ , testGroup "Hakyll.Core.Routes.Tests"
+ Hakyll.Core.Routes.Tests.tests
+ , testGroup "Hakyll.Web.Template.Tests"
+ Hakyll.Web.Template.Tests.tests
]