Craig A. Berry [Thu, 15 Oct 2009 23:05:50 +0000 (18:05 -0500)]
Also reported upstream this time (oops):
https://rt.cpan.org/Ticket/Display.html?id=50542
$| = 1;
-print "1..";
-print @tests/2;
-print "\n";
+my $numtests = scalar(@tests) / 2;
+print "1..$numtests\n";
use Text::Wrap;
$| = 1;
-print "1..";
-print @tests/2;
-print "\n";
+my $numtests = scalar(@tests) / 2;
+print "1..$numtests\n";
use Text::Tabs;