From 8e1f484353aa02b965e87088554bedda3d2b4c16 Mon Sep 17 00:00:00 2001 From: fiddlosopher Date: Sat, 7 Jul 2007 22:50:12 +0000 Subject: Added table tests for all writers. git-svn-id: https://pandoc.googlecode.com/svn/trunk@639 788f1e2b-df1e-0410-8736-df70ead52e1b --- tests/runtests.pl | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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..."; -- cgit v1.2.3