aboutsummaryrefslogtreecommitdiffstats
path: root/examples/qtest/parse-content.test
blob: 6a9d94fc46867b32b5ff0545653ba8eb500b9d51 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env perl
require 5.008;
BEGIN { $^W = 1; }
use strict;

chdir("parse-content");

require TestDriver;

my $td = new TestDriver('pdf-parse-content');

$td->runtest("parse content",
             {$td->COMMAND => "pdf-parse-content input.pdf 1"},
             {$td->FILE => "content.out", $td->EXIT_STATUS => 0},
             $td->NORMALIZE_NEWLINES);

$td->report(1);