Update of /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP
In directory sc8-pr-cvs1:/tmp/cvs-serv28370/lib/HTTP
Modified Files:
WebTest.pm.in
Log Message:
Minor documentation fixes; List DateTest and XMLReport plugins
Index: WebTest.pm.in
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP/WebTest.pm.in,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -d -r1.27 -r1.28
*** WebTest.pm.in 13 Dec 2002 01:36:39 -0000 1.27
--- WebTest.pm.in 4 Jan 2003 07:43:30 -0000 1.28
***************
*** 243,250 ****
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:
--- 243,249 ----
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:
***************
*** 256,260 ****
name = (
'first value'
! { "first " . "value" }
)
--- 255,259 ----
name = (
'first value'
! { "second " . "value" }
)
***************
*** 363,371 ****
=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
--- 362,369 ----
=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
***************
*** 452,455 ****
--- 450,461 ----
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
|