summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJasper Van der Jeugt <m@jaspervdj.be>2012-12-30 09:50:02 +0100
committerJasper Van der Jeugt <m@jaspervdj.be>2012-12-30 09:50:02 +0100
commita20bc7bed9fd03e930297467f876c27f0072d1de (patch)
treed8086281527165f87939c83c3ea66cff2908d607 /tests
parent010b3bc60449b47b4347f4ae3277e4277d9e8bde (diff)
downloadhakyll-a20bc7bed9fd03e930297467f876c27f0072d1de.tar.gz
Make saveSnapshot chainable
Diffstat (limited to 'tests')
-rw-r--r--tests/Hakyll/Core/Runtime/Tests.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/Hakyll/Core/Runtime/Tests.hs b/tests/Hakyll/Core/Runtime/Tests.hs
index 3488dba..af85f4f 100644
--- a/tests/Hakyll/Core/Runtime/Tests.hs
+++ b/tests/Hakyll/Core/Runtime/Tests.hs
@@ -29,9 +29,9 @@ case01 = withTestConfiguration $ \config -> do
match "*.md" $ do
route $ setExtension "html"
compile $ do
- body <- getResourceBody
- saveSnapshot "raw" body
- return $ renderPandoc body
+ getResourceBody
+ >>= saveSnapshot "raw"
+ >>= return . renderPandoc
match "bodies.txt" $ do
route idRoute