aboutsummaryrefslogtreecommitdiff
path: root/tests/Tests
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2011-01-14 18:01:57 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2011-01-14 18:01:57 -0800
commit0222f367b18ac4f77ab76751792c5757c2641d51 (patch)
treeea4eb87d99b0ba76d4adaf4afdd9cd51a1e3a6f4 /tests/Tests
parent09e9a86db95073c7b7672feacc5a5229a6249a07 (diff)
downloadpandoc-0222f367b18ac4f77ab76751792c5757c2641d51.tar.gz
Keep Tests.Arbitrary but remove quickcheck tests for now.
Remove Tests.Shared. Remove dependency on QuickCheck.
Diffstat (limited to 'tests/Tests')
-rw-r--r--tests/Tests/Shared.hs13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/Tests/Shared.hs b/tests/Tests/Shared.hs
deleted file mode 100644
index c7222c035..000000000
--- a/tests/Tests/Shared.hs
+++ /dev/null
@@ -1,13 +0,0 @@
-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 ]
-