summaryrefslogtreecommitdiff
path: root/tests/Hakyll/Core/Runtime
diff options
context:
space:
mode:
authorJasper Van der Jeugt <m@jaspervdj.be>2012-11-21 20:38:13 +0100
committerJasper Van der Jeugt <m@jaspervdj.be>2012-11-21 20:38:13 +0100
commitc32e57262b1c4544c323ea04c21608aef1126765 (patch)
treeaa9a2375586a30014d617bf5836faceda699f03e /tests/Hakyll/Core/Runtime
parent6b4c65642e21684bc143eaf29453d1d99fd9e227 (diff)
downloadhakyll-c32e57262b1c4544c323ea04c21608aef1126765.tar.gz
Add a runtime test
Diffstat (limited to 'tests/Hakyll/Core/Runtime')
-rw-r--r--tests/Hakyll/Core/Runtime/Tests.hs37
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/Hakyll/Core/Runtime/Tests.hs b/tests/Hakyll/Core/Runtime/Tests.hs
new file mode 100644
index 0000000..bb39a5f
--- /dev/null
+++ b/tests/Hakyll/Core/Runtime/Tests.hs
@@ -0,0 +1,37 @@
+--------------------------------------------------------------------------------
+{-# LANGUAGE OverloadedStrings #-}
+module Hakyll.Core.Runtime.Tests
+ ( tests
+ ) where
+
+
+--------------------------------------------------------------------------------
+import System.FilePath ((</>))
+import Test.Framework (Test, testGroup)
+import Test.HUnit (Assertion, (@?=))
+
+
+--------------------------------------------------------------------------------
+import Hakyll.Core.Configuration
+import Hakyll.Core.Routes
+import Hakyll.Core.Rules
+import Hakyll.Core.Runtime
+import Hakyll.Web.Page
+import TestSuite.Util
+
+
+--------------------------------------------------------------------------------
+tests :: Test
+tests = testGroup "Hakyll.Core.Runtime.Tests" $ fromAssertions "run" [case01]
+
+
+--------------------------------------------------------------------------------
+case01 :: Assertion
+case01 = withTestConfiguration $ \config -> do
+ _ <- run config $ do
+ match "*.md" $ do
+ route $ setExtension "html"
+ compile $ pageCompiler
+
+ out <- readFile $ destinationDirectory config </> "example.html"
+ lines out @?= ["<p>This is an example.</p>"]