Update of /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP
In directory sc8-pr-cvs1:/tmp/cvs-serv12489/lib/HTTP
Modified Files:
WebTest.pm
Log Message:
HTTP::WebTest::Plugin::HarnessReport produced report output on STDERR
what was adding noise in 'make test' output when being used in
Test::Harness-style test suites.
Index: WebTest.pm
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP/WebTest.pm,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -d -r1.32 -r1.33
*** WebTest.pm 13 Dec 2002 01:36:39 -0000 1.32
--- WebTest.pm 18 Jan 2003 10:14:55 -0000 1.33
***************
*** 264,271 ****
brackets are used to denote Perl code inside wtscript files.
C<HTTP::WebTest> compiles this Perl code as anonymous subroutines
! which are called when values of corresponding test
! parameters are required. These subroutines are called in an object-oriented
! fashion, so the
! C<HTTP::WebTest> object is passed to them as the first argument.
Some examples of syntax:
--- 264,270 ----
brackets are used to denote Perl code inside wtscript files.
C<HTTP::WebTest> compiles this Perl code as anonymous subroutines
! which are called when values of corresponding test parameters are
! required. When these subroutines are called C<HTTP::WebTest> object
! is passed to them as the first argument.
Some examples of syntax:
***************
*** 277,281 ****
name = (
'first value'
! { "first " . "value" }
)
--- 276,280 ----
name = (
'first value'
! { "second " . "value" }
)
***************
*** 384,392 ****
=head2 Core plugin modules
! C<HTTP::WebTest> is implemented in a modular structure that allows programmers
! to easily add modules to run additional tests or define additional simple
! tests without writing a module.
! C<HTTP::WebTest> provides a number of core plugin modules which are
! loaded by default:
=over 4
--- 383,390 ----
=head2 Core plugin modules
! C<HTTP::WebTest> is implemented in a modular structure that allows
! programmers to easily add modules to run additional tests or define
! additional simple tests without writing a module. C<HTTP::WebTest>
! provides a number of core plugin modules which are loaded by default:
=over 4
***************
*** 473,476 ****
--- 471,482 ----
This plugin supports testing web files using a local instance of Apache.
+
+ =item L<HTTP::WebTest::Plugin::DateTest|HTTP::WebTest::Plugin::DateTest>
+
+ Evaluate the "age" of embedded date strings in response body.
+
+ =item L<HTTP::WebTest::Plugin::XMLReport|HTTP::WebTest::Plugin::XMLReport>
+
+ Report plugin for HTTP::WebTest, generates output in XML format.
=back
|