stas 2003/08/26 15:17:57
Modified: lib/ModPerl TestRun.pm
Log:
we running 5.6.1, can rely on the base pragma
Revision Changes Path
1.9 +4 -3 modperl-2.0/lib/ModPerl/TestRun.pm
Index: TestRun.pm
===================================================================
RCS file: /home/cvs/modperl-2.0/lib/ModPerl/TestRun.pm,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- TestRun.pm 11 Jan 2003 01:54:44 -0000 1.8
+++ TestRun.pm 26 Aug 2003 22:17:57 -0000 1.9
@@ -1,8 +1,9 @@
package ModPerl::TestRun;
-use Apache::TestRunPerl ();
+use strict;
+use warnings FATAL => 'all';
-our @ISA = qw(Apache::TestRunPerl);
+use base qw(Apache::TestRunPerl);
sub new_test_config {
my $self = shift;
@@ -12,7 +13,7 @@
package ModPerl::TestConfig;
-our @ISA = qw(Apache::TestConfig);
+use base qw(Apache::TestConfig);
#don't inherit LoadModule perl_module from the apache httpd.conf