pandoc/tests/Tests/Writers/TEI.hs
Jesse Rosenthal 49b0b67b11 Remove Tests.Arbitrary
Use exported Arbitrary instances from pandoc-types instead.
2016-10-14 09:22:29 -04:00

43 lines
1.3 KiB
Haskell

{-# LANGUAGE OverloadedStrings #-}
module Tests.Writers.TEI (tests) where
import Test.Framework
import Text.Pandoc.Builder
import Text.Pandoc
import Tests.Helpers
import Text.Pandoc.Arbitrary()
{-
"my test" =: X =?> Y
is shorthand for
test html "my test" $ X =?> Y
which is in turn shorthand for
test html "my test" (X,Y)
-}
infix 4 =:
(=:) :: (ToString a, ToPandoc a)
=> String -> (a, String) -> Test
(=:) = test (writeTEI def . toPandoc)
tests :: [Test]
tests = [ testGroup "block elements"
["para" =: para "Lorem ipsum cetera."
=?> "<p>Lorem ipsum cetera.</p>"
]
, testGroup "inlines"
[
"Emphasis" =: emph ("emphasized")
=?> "<p><hi rendition=\"simple:italic\">emphasized</hi></p>"
,"SingleQuoted" =: singleQuoted (text "quoted material")
=?> "<p><quote>quoted material</quote></p>"
,"DoubleQuoted" =: doubleQuoted (text "quoted material")
=?> "<p><quote>quoted material</quote></p>"
,"NestedQuoted" =: doubleQuoted (singleQuoted (text "quoted material"))
=?> "<p><quote><quote>quoted material</quote></quote></p>"
]
]