2011-01-22 12:28:30 -08:00
|
|
|
module Tests.Writers.Native (tests) where
|
|
|
|
|
|
|
|
import Test.Framework
|
|
|
|
import Tests.Helpers
|
2017-03-04 13:03:41 +01:00
|
|
|
import Text.Pandoc
|
|
|
|
import Text.Pandoc.Arbitrary ()
|
2017-03-07 15:14:36 +01:00
|
|
|
import Test.QuickCheck (mapSize)
|
2011-01-22 12:28:30 -08: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 12:28:30 -08:00
|
|
|
|
|
|
|
p_write_blocks_rt :: [Block] -> Bool
|
2017-03-07 15:14:36 +01:00
|
|
|
p_write_blocks_rt bs =
|
2016-11-27 11:52:42 +01:00
|
|
|
read (purely (writeNative def) (Pandoc nullMeta bs)) ==
|
2011-02-04 18:33:32 -08:00
|
|
|
bs
|
2011-01-22 12:28:30 -08:00
|
|
|
|
|
|
|
tests :: [Test]
|
|
|
|
tests = [ property "p_write_rt" p_write_rt
|
2017-03-07 15:14:36 +01:00
|
|
|
, property "p_write_blocks_rt" $ mapSize
|
|
|
|
(\x -> if x > 3 then 3 else x) $ p_write_blocks_rt
|
2011-01-22 12:28:30 -08:00
|
|
|
]
|