#!/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'); $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); $td->runtest("equality", {$td->COMMAND => "test_driver 93 minimal.pdf -"}, {$td->STRING => "test 93 done\n", $td->EXIT_STATUS => 0}, $td->NORMALIZE_NEWLINES); $td->runtest("isScalar checks", {$td->COMMAND => "test_driver 95 - -"}, {$td->STRING => "test 95 done\n", $td->EXIT_STATUS => 0}, $td->NORMALIZE_NEWLINES); cleanup(); $td->report(4);