- decode the EXIF GPS IFD as well
- minor documentation touchups
- bump version 0.45_01
+
+0.45_02
+- some test scripts weren't fixing @INC correctly
+- t/t101jpeg.t wasn't skipping enough when there was no jpeg support
=================================================================
$im = Imager->new(xsize=>2, ysize=>2);
ok(!$im->write(file=>"testout/nojpeg.jpg"), "should fail to write jpeg");
cmp_ok($im->errstr, '=~', qr/format not supported/, "check no jpeg message");
- skip("no jpeg support", 5);
+ skip("no jpeg support", 45);
}
} else {
open(FH,">testout/t101.jpg") || die "cannot open testout/t101.jpg for writing\n";
#!perl -w
use Imager qw(:all);
use strict;
+use lib 't';
use Test::More tests=>36;
BEGIN { require "t/testtools.pl"; }
init_log("testout/t108tga.log",1);
# Change 1..1 below to 1..last_test_to_print .
# (It may become useful if the test is moved to ./t subdirectory.)
+use lib 't';
use Test::More tests => 47;
BEGIN { use_ok('Imager'); };
# Change 1..1 below to 1..last_test_to_print .
# (It may become useful if the test is moved to ./t subdirectory.)
use strict;
+use lib 't';
use Test::More tests => 43;
my $loaded;
#!perl -w
use strict;
+use lib 't';
use Test::More;
use Imager;
#!perl -w
use strict;
+use lib 't';
use Test::More;
eval "use Test::Pod;";
plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;