stas 2003/05/27 19:00:36
Modified: perl-framework/Apache-Test/lib/Apache Test.pm
Log:
doc fix
Revision Changes Path
1.61 +4 -4 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.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- Test.pm 28 May 2003 01:48:14 -0000 1.60
+++ Test.pm 28 May 2003 02:00:36 -0000 1.61
@@ -428,10 +428,10 @@
use have():
plan tests => 5,
- have 'LWP',
- { "perl >= 5.7.3 is required" => sub { $] >= 5.007003 } };
+ have 'LWP',
+ { "not Win32" => sub { $^O eq 'MSWin32'} };
-see have() for more info.
+see C<have()> for more info.
=item * an C<ARRAY> reference
@@ -559,7 +559,7 @@
For example:
- plan tests => 5, have_min_perl_version("5.00801");
+ plan tests => 5, have_min_perl_version("5.008001");
requires Perl 5.8.1 or higher.