summaryrefslogtreecommitdiffstats
path: root/t/fmt-texinfo.t
blob: b63371b60cb8559d6c866959bcff5411738fc80b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Texinfo module tester.

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

use strict;
use warnings;

use lib q(t);
use Testhelper;

my @tests;

for my $test (qw(longmenu partialmenus comments tindex)) {
    push @tests,
      {
        'format'  => 'texinfo',
        'input'   => "fmt/texinfo/$test.texi",
        'options' => '-o no-warn',
      };
}

run_all_tests(@tests);
0;