home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Professionell 2004 December
/
PCpro_2004_12.ISO
/
files
/
webserver
/
tsw
/
TSW_3.4.0.exe
/
Apache2
/
perl
/
TestSmokePerl.pm
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Perl POD Document
|
2002-05-14
|
341 b
|
20 lines
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 {
ModPerl::Config::as_string();
}
1;
__END__