summaryrefslogtreecommitdiffstats
path: root/t/fmt-tex.t
blob: a380cf5a8af2ce06f0a68cd45c7fcacbb5966944 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# TeX module tester.

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

use strict;
use warnings;

use lib q(t);
use Testhelper;

my @tests;

foreach my $t (qw(basic theorem)) {
    push @tests,
      {
        'format' => 'latex',
        'input'  => "fmt/tex/$t.tex"
      };
}

push @tests,
  {
    'doc'         => 'invalid input command, without ignore',
    'format'      => 'latex',
    'input'       => "fmt/tex/input-in-verbatim.tex",
    'error'       => 1,
    'norm_stderr' => 'fmt/tex/input-in-verbatim.stderr-without-ignore',
  },
  {
    'doc'     => 'invalid input command, with exclude_include',
    'format'  => 'latex',
    'input'   => "fmt/tex/input-in-verbatim.tex",
    'options' => '-o exclude_include=main.tex'
  };

run_all_tests(@tests);
0;