summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-07-07 22:50:12 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2007-07-07 22:50:12 +0000
commit8e1f484353aa02b965e87088554bedda3d2b4c16 (patch)
tree5d1d6b75bacd9d4ef8e5691d0b6729a900e107f7 /tests
parent956deeda4baf74523d3261e66c5d313d509b2139 (diff)
Added table tests for all writers.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@639 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'tests')
-rw-r--r--tests/runtests.pl12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl
index 999e0b3a6..b89997b76 100644
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -90,6 +90,18 @@ print " rtf writer...";
`$script -r native -w rtf tables.native > tmp.rtf`;
test_results("rtf table writer", "tmp.rtf", "tables.rtf");
+print " markdown writer...";
+`$script -r native -w markdown tables.native > tmp.markdown`;
+test_results("markdown table writer", "tmp.markdown", "tables.markdown");
+
+print " rst writer...";
+`$script -r native -w rst tables.native > tmp.rst`;
+test_results("rst table writer", "tmp.rst", "tables.rst");
+
+print " man writer...";
+`$script -r native -w man tables.native > tmp.man`;
+test_results("man table writer", "tmp.man", "tables.man");
+
print "\nReader tests:\n";
print "Testing markdown reader...";