aboutsummaryrefslogtreecommitdiffstats
path: root/qpdf/qtest/object-handle-api.test
blob: 3de5f909afa3770905b2258c1ad9f4e2f864b2ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env perl
require 5.008;
use warnings;
use strict;

unshift(@INC, '.');
require qpdf_test_helpers;

chdir("qpdf") or die "chdir testdir failed: $!\n";

require TestDriver;

cleanup();

my $td = new TestDriver('object-handle-api');

my $n_tests = 2;

$td->runtest("dictionary keys",
             {$td->COMMAND => "test_driver 87 - -"},
             {$td->STRING => "test 87 done\n", $td->EXIT_STATUS => 0},
             $td->NORMALIZE_NEWLINES);
$td->runtest("fluent interfaces",
             {$td->COMMAND => "test_driver 88 minimal.pdf -"},
             {$td->FILE => "test88.out", $td->EXIT_STATUS => 0},
             $td->NORMALIZE_NEWLINES);

cleanup();
$td->report($n_tests);