{-# LANGUAGE OverloadedStrings #-}
module Tests.Writers.HTML (tests) where
import Test.Framework
import Text.Pandoc.Builder
import Text.Pandoc
import Tests.Helpers
import Tests.Arbitrary()
import Text.Pandoc.Highlighting (languages) -- null if no hl support
html :: (ToString a, ToPandoc a) => a -> String
html = writeHtmlString def{ writerWrapText = False } . toPandoc
{-
"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 html
tests :: [Test]
tests = [ testGroup "inline code"
[ "basic" =: code "@&" =?> "@&
"
, "haskell" =: codeWith ("",["haskell"],[]) ">>="
=?> if null languages
then ">>=
"
else ">>=
"
, "nolanguage" =: codeWith ("",["nolanguage"],[]) ">>="
=?> ">>=
"
]
, testGroup "images"
[ "alt with formatting" =:
image "/url" "title" ("my " <> emph "image")
=?> ""
]
]