pandoc/test/Tests/Writers/Native.hs

23 lines
595 B
Haskell
Raw Normal View History

2011-01-22 21:28:30 +01:00
module Tests.Writers.Native (tests) where
import Test.Tasty
import Test.Tasty.QuickCheck
2011-01-22 21:28:30 +01:00
import Tests.Helpers
import Text.Pandoc
import Text.Pandoc.Arbitrary ()
2011-01-22 21:28:30 +01:00
p_write_rt :: Pandoc -> Bool
p_write_rt d =
2016-11-27 11:52:42 +01:00
read (purely (writeNative def{ writerTemplate = Just "" }) d) == d
2011-01-22 21:28:30 +01:00
p_write_blocks_rt :: [Block] -> Bool
p_write_blocks_rt bs =
2016-11-27 11:52:42 +01:00
read (purely (writeNative def) (Pandoc nullMeta bs)) ==
bs
2011-01-22 21:28:30 +01:00
tests :: [TestTree]
tests = [ testProperty "p_write_rt" p_write_rt
, testProperty "p_write_blocks_rt" $ mapSize
(\x -> if x > 3 then 3 else x) $ p_write_blocks_rt
2011-01-22 21:28:30 +01:00
]