HTML-Summary
view release on metacpan or search on metacpan
use vars qw( $loaded $ntests );
sub cat( $ ) {
local $/ = undef;
open( FH, shift ) or return '';
my $text = <FH>;
close( FH );
return $text;
}
sub ok( $ ) {
my $status = shift;
print "not " unless $status;
print "ok $ntests\n";
$ntests++;
}
BEGIN {
$| = 1;
print "1..25\n";
}
( run in 0.757 second using v1.01-cache-2.11-cpan-5b529ec07f3 )