aboutsummaryrefslogtreecommitdiff
path: root/tests/Tests
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2011-01-14 00:30:36 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2011-01-14 00:30:36 -0800
commitd41c17a2d5b3de54334eb05c60be76b468f5811f (patch)
treea0e5fb28c79a368a44e7c4ad723e6298f50e08d2 /tests/Tests
parentb3fb541d0138fb97ab06e0a2a41f2f37330be557 (diff)
downloadpandoc-d41c17a2d5b3de54334eb05c60be76b468f5811f.tar.gz
Added quickcheck tests for normalize in Shared.
Diffstat (limited to 'tests/Tests')
-rw-r--r--tests/Tests/Shared.hs13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/Tests/Shared.hs b/tests/Tests/Shared.hs
new file mode 100644
index 000000000..c7222c035
--- /dev/null
+++ b/tests/Tests/Shared.hs
@@ -0,0 +1,13 @@
+module Tests.Shared (tests) where
+import Test.Framework.Providers.QuickCheck2
+import Test.Framework
+import Tests.Arbitrary
+import Text.Pandoc.Shared
+import Text.Pandoc
+
+normalize_rt :: Pandoc -> Bool
+normalize_rt d = normalize (normalize d) == normalize d
+
+tests :: [Test]
+tests = [ testProperty "normalize_rt" normalize_rt ]
+