summaryrefslogtreecommitdiff
path: root/tests/Hakyll
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Hakyll')
-rw-r--r--tests/Hakyll/Core/Runtime/Tests.hs13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/Hakyll/Core/Runtime/Tests.hs b/tests/Hakyll/Core/Runtime/Tests.hs
index 1ef77ca..1bdfc60 100644
--- a/tests/Hakyll/Core/Runtime/Tests.hs
+++ b/tests/Hakyll/Core/Runtime/Tests.hs
@@ -41,6 +41,15 @@ case01 = do
>>= saveSnapshot "raw"
>>= renderPandoc
+ match (fromList ["partial.html", "partial-helper.html"]) $
+ compile templateCompiler
+ create ["partial.html.out"] $ do
+ route idRoute
+ compile $ do
+ example <- loadSnapshotBody "example.md" "raw"
+ makeItem example
+ >>= loadAndApplyTemplate "partial.html" defaultContext
+
create ["bodies.txt"] $ do
route idRoute
compile $ do
@@ -60,6 +69,10 @@ case01 = do
bodies <- readFile $ destinationDirectory testConfiguration </> "bodies.txt"
head (lines bodies) @?= "This is an example."
+ partial <- readFile $ providerDirectory testConfiguration </> "partial.html.out"
+ partial' <- readFile $ destinationDirectory testConfiguration </> "partial.html.out"
+ partial @?= partial'
+
cleanTestEnv