22 lines
473 B
Haskell
22 lines
473 B
Haskell
|
{-# LANGUAGE OverloadedStrings #-}
|
||
|
module Tests.Writers.Plain (tests) where
|
||
|
|
||
|
import Test.Tasty
|
||
|
import Tests.Helpers
|
||
|
import Text.Pandoc
|
||
|
import Text.Pandoc.Arbitrary ()
|
||
|
import Text.Pandoc.Builder
|
||
|
|
||
|
|
||
|
infix 4 =:
|
||
|
(=:) :: (ToString a, ToPandoc a)
|
||
|
=> String -> (a, String) -> TestTree
|
||
|
(=:) = test (purely (writePlain def) . toPandoc)
|
||
|
|
||
|
|
||
|
tests :: [TestTree]
|
||
|
tests = [ "strongly emphasized text to uppercase"
|
||
|
=: strong "Straße"
|
||
|
=?> "STRASSE"
|
||
|
]
|