stas 2004/08/06 19:21:47
Modified: perl-framework/Apache-Test/lib/Apache Test.pm
Log:
explain the reason for no warnings qw(numeric);
Revision Changes Path
1.94 +2 -1 httpd-test/perl-framework/Apache-Test/lib/Apache/Test.pm
Index: Test.pm
===================================================================
RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/Test.pm,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -u -r1.93 -r1.94
--- Test.pm 7 Aug 2004 02:14:11 -0000 1.93
+++ Test.pm 7 Aug 2004 02:21:47 -0000 1.94
@@ -257,8 +257,9 @@
# need_module requires the perl module
return 0 unless need_module($module);
+ # support dev versions like 0.18_01
return 1
- if eval { no warnings qw(numeric); $module->VERSION($version) };
+ if eval { no warnings qw(numeric); $module->VERSION($version) };
push @SkipReasons, "$module version $version or higher is required";
return 0;