You are viewing a plain text version of this content. The canonical link for it is here.
Posted to docs-cvs@perl.apache.org by st...@apache.org on 2002/02/21 05:39:01 UTC

cvs commit: modperl-docs/src/docs/2.0/devel/testing testing.pod

stas        02/02/20 20:39:01

  Modified:    src/docs/2.0/devel/testing testing.pod
  Log:
  - some code example fixes
  
  Revision  Changes    Path
  1.11      +8 -5      modperl-docs/src/docs/2.0/devel/testing/testing.pod
  
  Index: testing.pod
  ===================================================================
  RCS file: /home/cvs/modperl-docs/src/docs/2.0/devel/testing/testing.pod,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- testing.pod	24 Jan 2002 19:11:19 -0000	1.10
  +++ testing.pod	21 Feb 2002 04:39:01 -0000	1.11
  @@ -787,8 +787,9 @@
       (
        "Apache::Test" => "", # any version will do
       );
  +  my @scripts = qw(t/TEST);
   
  -  # accept the configs from comman line
  +  # accept the configs from command line
     Apache::TestMM::filter_args();
     Apache::TestMM::generate_script('t/TEST');
   
  @@ -843,7 +844,7 @@
   Perl can find it. If not you should tell Perl where to find it. For
   example you could add:
   
  -  use lib qw(../Apache-Test/lib);
  +  use lib qw(Apache-Test/lib);
   
   to I<t/TEST.PL>, if C<Apache::Test> is located in a parallel
   directory.
  @@ -955,9 +956,9 @@
     README
     MANIFEST
   
  -That's it. Now we can build the package. But we need to know where
  -C<apxs> utility from the installed on our system Apache is located. We
  -pass its path as an option:
  +That's it. Now we can build the package. But we need to know the
  +location of the C<apxs> utility from the installed httpd server. We
  +pass its path as an option to I<Makefile.PL>:
   
     % perl Makefile.PL -apxs ~/httpd/prefork/bin/apxs
     % make
  @@ -1572,6 +1573,8 @@
      Apache::TestRequest::module($module);
      my $config = Apache::Test::config();
      my $hostport = Apache::TestRequest::hostport($config);
  +
  +How to get the request object?
   
   =head2 Starting Multiple Servers
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-cvs-unsubscribe@perl.apache.org
For additional commands, e-mail: docs-cvs-help@perl.apache.org