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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
#!/usr/bin/perl
use strict;
use warnings;
use Test::More;
use File::Spec ();
BEGIN {
# RECOMMEND PREREQ: File::Temp 0.15 - need tempdir
eval "use File::Temp 0.15 'tempdir';";
plan skip_all => "File::Temp 0.15 required for testing" if $@;
plan tests => 9;
}
use PostScript::File qw(check_file);
ok(1); # module found
my $ps = PostScript::File->new(
headings => 1,
paper => "A5",
landscape => 1,
left => 36,
right => 36,
top => 72,
bottom => 72,
clipping => 1,
clipcmd => "stroke",
errors => 1,
debug => 2,
);
isa_ok($ps, 'PostScript::File'); # object created
$ps->add_to_page( <<END_PAGE );
/Helvetica findfont
12 scalefont
setfont
100 150 moveto
(hello world) show
111
222
(some text)
[ 33 (in an array) 55 ]
666
END_PAGE
my $page = $ps->get_page_label();
is($page, '1', "page 1");
ok($ps->get_page());
my $dir = $ARGV[0] || tempdir(CLEANUP => 1);
my $name = "fi03debug";
my $out = $ps->output( $name, $dir );
ok(1); # survived so far
is($ps->get_filename, undef, 'Did not set filename');
is($out, File::Spec->catfile( $dir, "$name.ps" ), 'expected output filename');
my $file = check_file( "$name.ps", $dir );
ok($file);
ok(-e $file);
|