summaryrefslogtreecommitdiffstats
path: root/examples/qtest/pdf-split-pages.test
diff options
context:
space:
mode:
Diffstat (limited to 'examples/qtest/pdf-split-pages.test')
-rw-r--r--examples/qtest/pdf-split-pages.test33
1 files changed, 33 insertions, 0 deletions
diff --git a/examples/qtest/pdf-split-pages.test b/examples/qtest/pdf-split-pages.test
new file mode 100644
index 00000000..ce271b35
--- /dev/null
+++ b/examples/qtest/pdf-split-pages.test
@@ -0,0 +1,33 @@
+#!/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>);
+}