diff options
Diffstat (limited to '')
-rw-r--r-- | t/fmt-sgml.t | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/t/fmt-sgml.t b/t/fmt-sgml.t new file mode 100644 index 0000000..27779a1 --- /dev/null +++ b/t/fmt-sgml.t @@ -0,0 +1,25 @@ +#! /usr/bin/perl +# SGML module tester. + +######################### + +use strict; +use warnings; + +use lib q(t); +use Testhelper; + +my @tests; + +push @tests, + { + 'format' => 'sgml', + 'input' => "fmt/sgml/basic.sgml", + }, + { + 'format' => 'sgml', + 'input' => "fmt/sgml/attributes-order.sgml", + }; + +run_all_tests(@tests); +0; |