[Http-webtest-commits] CVS: HTTP-WebTest/lib/HTTP WebTest.pm.in,1.11,1.12
Brought to you by:
m_ilya,
richardanderson
From: Ilya M. <m_...@us...> - 2002-05-15 19:30:04
|
Update of /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP In directory usw-pr-cvs1:/tmp/cvs-serv8750/lib/HTTP Modified Files: WebTest.pm.in Log Message: Minor doc tweaks Index: WebTest.pm.in =================================================================== RCS file: /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP/WebTest.pm.in,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** WebTest.pm.in 12 May 2002 14:11:34 -0000 1.11 --- WebTest.pm.in 15 May 2002 19:30:01 -0000 1.12 *************** *** 252,260 **** ) ! You can specify a null (placeholder) value using '' or "". Within single ! or double quotes, the usual Perl string quoting rules apply. Thus, single ! quotes mean that all enclosed characters are interpreted literally: '\n' ! is backslash-n rather than a newline character. Double quotes mean that ! Perl metasymbols are interpreted: "\n\t" is a newline and a tab. Also it is possible to specify Perl code instead of scalar, instead of --- 252,264 ---- ) ! You can specify a null (placeholder) value using '' or "". Within ! single or double quotes, the usual Perl string quoting rules apply. ! Thus, single quotes mean that all enclosed characters are interpreted ! literally: '\n' is backslash-n rather than a newline character. ! Double quotes mean that Perl metasymbols are interpreted: "\n\t" is a ! newline and a tab. Double quoted strings can also contain Perl ! variables to be expanded: "$var" is string which contains value of ! Perl variable C<$var>. Perl variables can be defined by plugin ! modules or in code sections described below. Also it is possible to specify Perl code instead of scalar, instead of *************** *** 480,484 **** =back ! See documentation on these modules for more information. =head2 Writting Plugin Modules --- 484,489 ---- =back ! Information about test parameters supported by add-on plugin modules ! is summarized below in section L<TEST PARAMETERS|TEST PARAMETERS>. =head2 Writting Plugin Modules *************** *** 498,501 **** --- 503,510 ---- Parameters marked as I<GLOBAL PARAMETER> can be used only as global and it cannot be overriden in test blocks. + + Parameters marked as I<NON-CORE PARAMETER> are defined in add-on + plugin modules which must be loaded explicitly using test parameter + C<plugins>. =for pod_merge replace params |