hakyll/tests/Hakyll/Web/Template/Tests.hs

41 lines
1.4 KiB
Haskell
Raw Normal View History

2012-11-19 13:59:55 +00:00
--------------------------------------------------------------------------------
{-# LANGUAGE OverloadedStrings #-}
module Hakyll.Web.Template.Tests
( tests
) where
2012-11-19 13:59:55 +00:00
--------------------------------------------------------------------------------
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.Page
import Hakyll.Web.Template
import Hakyll.Web.Template.Context
import TestSuite.Util
--------------------------------------------------------------------------------
tests :: Test
tests = testGroup "Hakyll.Core.Template.Tests"
[ testCase "case01" case01
]
2012-11-19 13:59:55 +00:00
--------------------------------------------------------------------------------
case01 :: Assertion
case01 = withTestStore $ \store -> do
provider <- newTestProvider store
out <- resourceString provider "example.md.out"
tpl <- testCompilerDone store provider "template.html" $ templateCompiler
item <- testCompilerDone store provider "example.md" $
pageCompiler >>= applyTemplate (itemBody tpl) defaultContext
out @=? itemBody item