| Nuno Lopes 2006-12-11, 7:00 pm |
| nlopess Sat Dec 9 22:13:01 2006 UTC
Modified files:
/qaweb write-test.php
Log:
add the new COOKIE section. make note that some sections force the use of the CGI binary
http://cvs.php.net/viewvc.cgi/qaweb...2&diff_format=u
Index: qaweb/write-test.php
diff -u qaweb/write-test.php:1.11 qaweb/write-test.php:1.12
--- qaweb/write-test.php:1.11 Sat Sep 16 12:20:13 2006
+++ qaweb/write-test.php Sat Dec 9 22:13:01 2006
@@ -3,7 +3,7 @@
$TITLE = "Writing Tests [PHP-QAT: Quality Assurance Team]";
$SITE_UPDATE = date("D M d H:i:s Y T", filectime(__FILE__));
-/* $Id: write-test.php,v 1.11 2006/09/16 12:20:13 nlopess Exp $ */
+/* $Id: write-test.php,v 1.12 2006/12/09 22:13:01 nlopess Exp $ */
common_header();
?>
@@ -118,15 +118,22 @@
<dd>a condition when to skip this test. (optional)</dd>
<dt>--POST--</dt>
-<dd>POST variables to be passed to the test script. (optional)</dd>
+<dd>POST variables to be passed to the test script. This section forces the
+use of the CGI binary instead of the usual CLI one. (optional)</dd>
<dt>--POST_RAW--</dt>
<dd>RAW POST data to be passed to the test script. This differs from the section
above because it doesn't set the Content-Type, which can be set manually in
-this section. (optional)</dd>
+this section. This section forces the use of the CGI binary instead of the
+usual CLI one. (optional)</dd>
<dt>--GET--</dt>
-<dd>GET variables to be passed to the test script. (optional)</dd>
+<dd>GET variables to be passed to the test script. This section forces the
+use of the CGI binary instead of the usual CLI one. (optional)</dd>
+
+<dt>--COOKIE--</dt>
+<dd>Cookies to be passed to the test script. This section forces the
+use of the CGI binary instead of the usual CLI one. (optional)</dd>
<dt>--STDIN--</dt>
<dd>data to be fed to the test script's standard input. (optional)</dd>
|