diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-07-07 22:50:12 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2007-07-07 22:50:12 +0000 |
commit | 8e1f484353aa02b965e87088554bedda3d2b4c16 (patch) | |
tree | 5d1d6b75bacd9d4ef8e5691d0b6729a900e107f7 /tests | |
parent | 956deeda4baf74523d3261e66c5d313d509b2139 (diff) | |
download | pandoc-8e1f484353aa02b965e87088554bedda3d2b4c16.tar.gz |
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.pl | 12 |
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..."; |