sitemapper
view release on metacpan or search on metacpan
# Insert your test code below (better if it prints "ok 13"
# (correspondingly "not ok 13") depending on the success of chunk 13
# of the test code):
my $ntests = 1;
sub ok( $ ) {
my $status = shift;
print "not " unless $status;
print "ok $ntests\n";
$ntests++;
}
BEGIN {
$| = 1;
print "1..2\n";
}
( run in 0.832 second using v1.01-cache-2.11-cpan-13bb782fe5a )