summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2012-05-08 20:26:39 -0700
committerJohn MacFarlane <fiddlosopher@gmail.com>2012-05-08 20:26:39 -0700
commitc20c139255a83e1dcaf1d923375b3759614adaf3 (patch)
treeba5fb9e2b1175a8341a07080b3c8f0f8f41bda7b /src
parentb79df946d1e162c9b6eae82674490b6425b0c9f2 (diff)
Added docbook reader tests (still failing).
Diffstat (limited to 'src')
-rw-r--r--src/Tests/Old.hs7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/Tests/Old.hs b/src/Tests/Old.hs
index 1ec32a30d..67eb51573 100644
--- a/src/Tests/Old.hs
+++ b/src/Tests/Old.hs
@@ -97,13 +97,18 @@ tests = [ testGroup "markdown"
, test "reader" ["-r", "textile", "-w", "native", "-s"]
"textile-reader.textile" "textile-reader.native"
]
+ , testGroup "docbook"
+ [ testGroup "writer" $ writerTests "docbook"
+ , test "reader" ["-r", "docbook", "-w", "native", "-s"]
+ "docbook-reader.docbook" "docbook-reader.native"
+ ]
, testGroup "native"
[ testGroup "writer" $ writerTests "native"
, test "reader" ["-r", "native", "-w", "native", "-s"]
"testsuite.native" "testsuite.native"
]
, testGroup "other writers" $ map (\f -> testGroup f $ writerTests f)
- [ "docbook", "opendocument" , "context" , "texinfo"
+ [ "opendocument" , "context" , "texinfo"
, "man" , "plain" , "mediawiki", "rtf", "org", "asciidoc"
]
]