home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / xampp / xampp-perl-addon-1.4.9-installer.exe / TestSmokePerl.pm < prev    next >
Encoding:
Perl POD Document  |  2004-03-04  |  923 b   |  34 lines

  1. # Copyright 2001-2004 The Apache Software Foundation
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. #     http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. #
  15. package Apache::TestSmokePerl;
  16.  
  17. use strict;
  18. use warnings FATAL => 'all';
  19.  
  20. use Apache::TestSmoke ();
  21. use ModPerl::Config ();
  22.  
  23. # a subclass of Apache::TestSmoke that configures mod_perlish things
  24. use vars qw(@ISA);
  25. @ISA = qw(Apache::TestSmoke);
  26.  
  27. sub build_config_as_string {
  28.     ModPerl::Config::as_string();
  29. }
  30.  
  31. 1;
  32. __END__
  33.  
  34.