Uses Imager::Probe now.
https://rt.cpan.org/Public/Bug/Display.html?id=61328
+Bug fixes:
+
+ - from _01: look for missing file support test files in the right
+ places.
+
Imager 0.77_01 - 13 Sep 2010
==============
plan tests => 12;
my $im = Imager->new;
-ok(!$im->read(file=>"testimg/scale.gif"), "should fail to read gif");
+ok(!$im->read(file=>"GIF/testimg/scale.gif"), "should fail to read gif");
cmp_ok($im->errstr, '=~', "format 'gif' not supported",
"check no gif message");
-ok(!Imager->read_multi(file=>"testimg/scale.gif"),
+ok(!Imager->read_multi(file=>"GIF/testimg/scale.gif"),
"should fail to read multi gif");
cmp_ok($im->errstr, '=~', "format 'gif' not supported",
"check no gif message");
my $im = Imager->new;
-ok(!$im->read(file=>"testimg/comp4.tif"), "should fail to read tif");
+ok(!$im->read(file=>"TIFF/testimg/comp4.tif"), "should fail to read tif");
cmp_ok($im->errstr, '=~', "format 'tiff' not supported",
"check no tiff message");
-ok(!$im->read_multi(file => "testimg/comp4.tif"),
+ok(!$im->read_multi(file => "TIFF/testimg/comp4.tif"),
"should fail to read multi tiff");
cmp_ok($im->errstr, '=~', "format 'tiff' not supported",
"check no tiff message");