theory 2004/08/30 12:50:56
Modified: src/docs/general/testing testing.pod
Log:
Add spaces so that the blue lines work properly when rendered to HTML.
Revision Changes Path
1.36 +13 -13 modperl-docs/src/docs/general/testing/testing.pod
Index: testing.pod
===================================================================
RCS file: /home/cvs/modperl-docs/src/docs/general/testing/testing.pod,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- testing.pod 26 Aug 2004 02:04:59 -0000 1.35
+++ testing.pod 30 Aug 2004 19:50:56 -0000 1.36
@@ -933,11 +933,11 @@
"Apache::Test" => "", # any version will do
);
my @scripts = qw(t/TEST);
-
+
# accept the configs from command line
Apache::TestMM::filter_args();
Apache::TestMM::generate_script('t/TEST');
-
+
WriteMakefile(
NAME => 'Apache::Amazing',
VERSION_FROM => 'lib/Apache/Amazing.pm',
@@ -972,10 +972,10 @@
look somethiing like this:
use Module::Build:
-
+
my $build_pkg = eval { require Apache::TestMB }
? 'Apache::TestMB' : 'Module::Build';
-
+
my $build = $build_pkg->new(
module_name => 'Apache::Amazing',
license => 'perl',
@@ -1163,7 +1163,7 @@
% perl Makefile.PL -apxs ~/httpd/prefork/bin/apxs
% make
% make test
-
+
basic...........ok
All tests successful.
Files=1, Tests=2, 1 wallclock secs ( 0.52 cusr + 0.02 csys = 0.54 CPU)
@@ -1185,11 +1185,11 @@
# perl Build.PL -apxs ~/httpd/prefork/bin/apxs
% ./Build
% ./Build test
-
+
basic...........ok
All tests successful.
Files=1, Tests=2, 1 wallclock secs ( 0.52 cusr + 0.02 csys = 0.54 CPU)
-
+
% ./Build install
% ./Build dist
@@ -1480,15 +1480,15 @@
#--------------------
use strict;
use warnings FATAL => 'all';
-
+
use Apache::Test;
use Apache::TestUtil;
use Apache::TestRequest 'GET_BODY';
-
+
plan tests => 1; # plan one test.
-
+
Apache::TestRequest::module('default');
-
+
my $config = Apache::Test::config();
my $hostport = Apache::TestRequest::hostport($config) || '';
t_debug("connecting to $hostport");
@@ -1648,7 +1648,7 @@
You should:
- #include "apache_httpd_test.h"
+ #include "apache_httpd_test.h"
which should be preceded by an:
@@ -2082,7 +2082,7 @@
use C<have()>:
plan tests => 5,
- have 'LWP',
+ have 'LWP',
{ "not Win32" => sub { $^O eq 'MSWin32'} };
=item * an C<ARRAY> reference
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]