hakyll/tests/Hakyll/Web/Template/Tests.hs
2012-12-15 18:02:47 +01:00

49 lines
1.6 KiB
Haskell

--------------------------------------------------------------------------------
{-# LANGUAGE OverloadedStrings #-}
module Hakyll.Web.Template.Tests
( tests
) where
--------------------------------------------------------------------------------
import Data.Monoid (mconcat)
import Test.Framework (Test, testGroup)
import Test.Framework.Providers.HUnit (testCase)
import Test.HUnit (Assertion, (@=?))
--------------------------------------------------------------------------------
import Hakyll.Core.Item
import Hakyll.Core.Provider
import Hakyll.Web.Pandoc
import Hakyll.Web.Template
import Hakyll.Web.Template.Context
import TestSuite.Util
--------------------------------------------------------------------------------
tests :: Test
tests = testGroup "Hakyll.Core.Template.Tests"
[ testCase "case01" case01
]
--------------------------------------------------------------------------------
case01 :: Assertion
case01 = withTestStore $ \store -> do
provider <- newTestProvider store
out <- resourceString provider "template.html.out"
tpl <- testCompilerDone store provider "template.html" $ templateCompiler
item <- testCompilerDone store provider "example.md" $
pandocCompiler >>= applyTemplate (itemBody tpl) testContext
out @=? itemBody item
--------------------------------------------------------------------------------
testContext :: Context String
testContext = mconcat
[ functionField "echo" (\args _ -> return $ unwords args)
, defaultContext
]