stas 2003/07/08 00:57:03
Modified: perl-framework/Apache-Test/lib/Apache Test.pm
perl-framework/Apache-Test Changes
Log:
log David Wheeler's recent patches
Revision Changes Path
1.64 +9 -0 httpd-test/perl-framework/Apache-Test/lib/Apache/Test.pm
Index: Test.pm
===================================================================
RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/Test.pm,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- Test.pm 19 Jun 2003 00:45:31 -0000 1.63
+++ Test.pm 8 Jul 2003 07:57:03 -0000 1.64
@@ -656,6 +656,15 @@
# $tests will contain the Test.pm output: 1..4\nok 1\n...
my $tests = Apache::TestToString->finish;
+=head1 SEE ALSO
+
+L<Apache::TestRequest|Apache::TestRequest> subclasses LWP::UserAgent and
+exports a number of useful functions for sending request to the Apache test
+server. You can then test the results of those requests.
+
+Use L<Apache::TestMM|Apache::TestMM> in your F<Makefile.PL> to set up your
+distribution for testing.
+
=head1 AUTHOR
Doug MacEachern with contributions from Geoffrey Young, Philippe
1.31 +14 -0 httpd-test/perl-framework/Apache-Test/Changes
Index: Changes
===================================================================
RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/Changes,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- Changes 7 Jul 2003 18:42:29 -0000 1.30
+++ Changes 8 Jul 2003 07:57:03 -0000 1.31
@@ -8,6 +8,20 @@
=item 1.04-dev -
+UPLOAD is now auto-exported, like the rest [David Wheeler
+<[EMAIL PROTECTED]>]
+
+Change the way the redirect_ok parameter works so that it affects only
+_that call_ to the function. Afterward it should revert to the old
+value of $RedirectOK. [David Wheeler <[EMAIL PROTECTED]>]
+
+Change user_agent() so that the LWP::UserAgent "requests_redirectable"
+parameter actually does something useful vis-�-vis $RedirectOK. [David
+Wheeler <[EMAIL PROTECTED]>]
+
+Apache::TestRequest API documenation [David Wheeler
+<[EMAIL PROTECTED]>]
+
Enable TransferLog in the autogenerated httpd.conf only if
mod_log_config is available [Stas]