Added table tests for all writers.

git-svn-id: https://pandoc.googlecode.com/svn/trunk@639 788f1e2b-df1e-0410-8736-df70ead52e1b
This commit is contained in:
fiddlosopher 2007-07-07 22:50:12 +00:00
parent 956deeda4b
commit 8e1f484353

View file

@ -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...";