blob: b20f254c20e3554dbad28e35e3360cb87db51be5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/usr/bin/env perl
require 5.008;
BEGIN { $^W = 1; }
use strict;
chdir("npages");
require TestDriver;
my $td = new TestDriver('pdf-npages');
$td->runtest("normal",
{$td->COMMAND => "pdf-npages minimal.pdf"},
{$td->STRING => "1\n", $td->EXIT_STATUS => 0},
$td->NORMALIZE_NEWLINES);
$td->runtest("error",
{$td->COMMAND => "pdf-npages bad"},
{$td->STRING => "pdf-npages: bad: not a PDF file\n",
$td->EXIT_STATUS => 2},
$td->NORMALIZE_NEWLINES);
$td->report(2);
|