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:
Perl POD Document  |  2002-05-14  |  341 b   |  20 lines

  1. package Apache::TestSmokePerl;
  2.  
  3. use strict;
  4. use warnings FATAL => 'all';
  5.  
  6. use Apache::TestSmoke ();
  7. use ModPerl::Config ();
  8.  
  9. # a subclass of Apache::TestSmoke that configures mod_perlish things
  10. use vars qw(@ISA);
  11. @ISA = qw(Apache::TestSmoke);
  12.  
  13. sub build_config_as_string {
  14.     ModPerl::Config::as_string();
  15. }
  16.  
  17. 1;
  18. __END__
  19.  
  20.