summaryrefslogtreecommitdiffstats
path: root/t/fmt-xhtml.t
blob: 529f191cd3fcc7376b02df572bcf88f8a5a9ebdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Xhtml module tester.

#########################

use strict;
use warnings;

use lib q(t);
use Testhelper;

my @tests;

for my $t (qw(basic includessi closing-tag table)) {
    push @tests, { 'format' => 'xhtml', 'input' => "fmt/xhtml/$t.html" };
}

run_all_tests(@tests);
0;