aboutsummaryrefslogtreecommitdiff
path: root/tests/Tests/Writers/Native.hs
blob: 7ec43b339e526825591d38ae5a69b92f10a59590 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module Tests.Writers.Native (tests) where

import Test.Framework
import Text.Pandoc.Builder
import Text.Pandoc
import Tests.Helpers
import Text.Pandoc.Arbitrary()

p_write_rt :: Pandoc -> Bool
p_write_rt d =
  read (writeNative def{ writerTemplate = Just "" } d) == d

p_write_blocks_rt :: [Block] -> Bool
p_write_blocks_rt bs = length bs > 20 ||
  read (writeNative def (Pandoc nullMeta bs)) ==
  bs

tests :: [Test]
tests = [ property "p_write_rt" p_write_rt
        , property "p_write_blocks_rt" p_write_blocks_rt
        ]