2014-06-07 17:04:30 +00:00
|
|
|
#!/usr/bin/env perl
|
|
|
|
require 5.008;
|
|
|
|
use warnings;
|
|
|
|
use strict;
|
|
|
|
|
|
|
|
chdir("pdf-split-pages");
|
|
|
|
|
|
|
|
require TestDriver;
|
|
|
|
|
|
|
|
my $td = new TestDriver('pdf-split-pages');
|
|
|
|
|
|
|
|
cleanup();
|
|
|
|
|
|
|
|
$td->runtest("split",
|
2022-02-08 14:18:08 +00:00
|
|
|
{$td->COMMAND => "pdf-split-pages ' --static-id' in.pdf out"},
|
|
|
|
{$td->STRING => "", $td->EXIT_STATUS => 0});
|
2014-06-07 17:04:30 +00:00
|
|
|
|
|
|
|
$td->runtest("check page 1",
|
2022-02-08 14:18:08 +00:00
|
|
|
{$td->FILE => "out1.pdf"},
|
|
|
|
{$td->FILE => "exp1.pdf"});
|
2014-06-07 17:04:30 +00:00
|
|
|
|
|
|
|
$td->runtest("check page 2",
|
2022-02-08 14:18:08 +00:00
|
|
|
{$td->FILE => "out2.pdf"},
|
|
|
|
{$td->FILE => "exp2.pdf"});
|
2014-06-07 17:04:30 +00:00
|
|
|
|
|
|
|
cleanup();
|
|
|
|
|
|
|
|
$td->report(3);
|
|
|
|
|
|
|
|
sub cleanup
|
|
|
|
{
|
|
|
|
unlink (<out?.pdf>);
|
|
|
|
}
|