blob: 1217180e6975ca157a5f580552e558adcf15bd54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
--------------------------------------------------------------------------------
module Hakyll.Core.Provider.Metadata.Tests
( tests
) where
--------------------------------------------------------------------------------
import Test.Framework (Test, testGroup)
import Test.HUnit (Assertion, (@=?))
import Text.Parsec as P
import Text.Parsec.String (Parser)
--------------------------------------------------------------------------------
import Hakyll.Core.Provider.Metadata
import TestSuite.Util
--------------------------------------------------------------------------------
tests :: Test
tests = testGroup "Hakyll.Core.Provider.Metadata.Tests" $
fromAssertions "page" [testPage01, testPage02]
--------------------------------------------------------------------------------
testPage01 :: Assertion
testPage01 = testParse page ([("foo", "bar")], "qux\n")
"---\n\
\foo: bar\n\
\---\n\
\qux\n"
--------------------------------------------------------------------------------
testPage02 :: Assertion
testPage02 = testParse page
([("description", descr)], "Hello I am dog\n")
"---\n\
\description: A long description that would look better if it\n\
\ spanned multiple lines and was indented\n\
\---\n\
\Hello I am dog\n"
where
descr =
"A long description that would look better if it \
\spanned multiple lines and was indented"
--------------------------------------------------------------------------------
testParse :: (Eq a, Show a) => Parser a -> a -> String -> Assertion
testParse parser expected input = case P.parse parser "<inline>" input of
Left err -> error $ show err
Right x -> expected @=? x
|