Test::AtRuntime Test-AtRuntime
but the following code didn't print anything at all. What was my bug?
while (<DATA>) {
chomp;
my ($module,undef,$distro) = split( / / );
$distro =~ s[.+/][];
$distro =~ s[-\d+\.\d+\.tar\.gz];
print $module, " ", $distro, "\n";
}
__END__
Test::AtRuntime 0.02 M/MS/MSCHWERN/Test-AtRuntime-0.02.tar.gz
Test::Builder 0.17 M/MS/MSCHWERN/Test-Simple-0.47.tar.gz
Test::Builder::DatabaseRow 1.01 P/PR/PROFERO/Test-DatabaseRow-1.01.tar.gz
Test::Builder::Tester 0.09 M/MA/MARKF/Test-Builder-Tester-0.09.tar.gz
Hmm (Score:2, Insightful)
---ict / Spoon
Re:Hmm (Score:2)
Ah, but that's because you didn't finish it. You only included the opening semicolon delimiter for the replacement. The complete statement is
which is the same asThis works for me. (Score:3, Informative)
Reply to This