2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-06-02 02:10:52 +00:00
qpdf/examples/qtest/pdf-split-pages.test
Jay Berkenbilt 0b2e9cb168 Example: fast split into single pages
This is faster than using qpdf --pages to do it.
2014-06-07 16:40:38 -04:00

34 lines
574 B
Perl

#!/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",
{$td->COMMAND => "pdf-split-pages ' --static-id' in.pdf out"},
{$td->STRING => "", $td->EXIT_STATUS => 0});
$td->runtest("check page 1",
{$td->FILE => "out1.pdf"},
{$td->FILE => "exp1.pdf"});
$td->runtest("check page 2",
{$td->FILE => "out2.pdf"},
{$td->FILE => "exp2.pdf"});
cleanup();
$td->report(3);
sub cleanup
{
unlink (<out?.pdf>);
}