stas 01/12/10 21:12:29
Added: perl-framework/Apache-Test/lib/Apache TestSmokePerl.pm
Log:
- a new subclass of Apache::TestSmoke
- override build_config_as_string to fetch also mod_perl config
Revision Changes Path
1.1
httpd-test/perl-framework/Apache-Test/lib/Apache/TestSmokePerl.pm
Index: TestSmokePerl.pm
===================================================================
package Apache::TestSmokePerl;
use strict;
use warnings FATAL => 'all';
use Apache::TestSmoke ();
use ModPerl::Config ();
# a subclass of Apache::TestSmoke that configures mod_perlish things
use vars qw(@ISA);
@ISA = qw(Apache::TestSmoke);
sub build_config_as_string {
my($self) = @_;
return ModPerl::Config::as_string();
}
1;
__END__