aboutsummaryrefslogtreecommitdiff
path: root/tests/test-pandoc.hs
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2011-01-21 10:23:41 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2011-01-21 10:23:41 -0800
commitd0726920db29fee60f09c45be2974bf8d9eb464f (patch)
tree023a6dc2c0d5a43048dae7a735dd8f9d2bab72b1 /tests/test-pandoc.hs
parent5c35be13625895f52c66f98be81751b49b1b0365 (diff)
downloadpandoc-d0726920db29fee60f09c45be2974bf8d9eb464f.tar.gz
Added Tests.Writers.ConTeXt and helpers for writer tests.
Diffstat (limited to 'tests/test-pandoc.hs')
-rw-r--r--tests/test-pandoc.hs4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/test-pandoc.hs b/tests/test-pandoc.hs
index 316060c83..faa2735c9 100644
--- a/tests/test-pandoc.hs
+++ b/tests/test-pandoc.hs
@@ -6,12 +6,16 @@ import Test.Framework
import qualified Tests.Old
import qualified Tests.Readers.LaTeX
+import qualified Tests.Writers.ConTeXt
tests :: [Test]
tests = [ testGroup "Old" Tests.Old.tests
, testGroup "Readers"
[ testGroup "LaTeX" Tests.Readers.LaTeX.tests
]
+ , testGroup "Writers"
+ [ testGroup "ConTeXt" Tests.Writers.ConTeXt.tests
+ ]
]
main :: IO ()