it used fork() which caused problems on systems that didn't have
a real fork().
+0.41?
+ - skip() in testtools should be skipn() and it should use the
+ loop variable for the test number
+
=================================================================
For latest versions check the Imager-devel pages:
$img;
}
-sub skip {
+sub skipn {
my ($testnum, $count, $why) = @_;
$why = '' unless defined $why;
- print "ok $testnum # skip $why\n" for $testnum ... $testnum+$count-1;
+ print "ok $_ # skip $why\n" for $testnum ... $testnum+$count-1;
}
1;