stas 2003/10/20 15:48:58
Modified: perl-framework/Apache-Test/lib/Apache TestConfig.pm Log: document the APACHE_TEST_COLOR and APACHE_TEST_LIVE_DEV env vars Revision Changes Path 1.179 +23 -0 httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfig.pm Index: TestConfig.pm =================================================================== RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfig.pm,v retrieving revision 1.178 retrieving revision 1.179 diff -u -u -r1.178 -r1.179 --- TestConfig.pm 7 Oct 2003 18:26:57 -0000 1.178 +++ TestConfig.pm 20 Oct 2003 22:48:58 -0000 1.179 @@ -1654,6 +1654,29 @@ =back +=head1 Environment Variables + +The following environment variables affect the configuration and the +run-time of the C<Apache::Test> framework: + +=head2 APACHE_TEST_COLOR + +To aid visual control over the configuration process and the run-time +phase, C<Apache::Test> uses coloured fonts when the environment +variable C<APACHE_TEST_COLOR> is set to a true value. + +=head2 APACHE_TEST_LIVE_DEV + +When using C<Apache::Test> during the project development phase, it's +often convenient to have the I<project/lib> (live) directory appearing +first in C<@INC> so any changes to the Perl modules, residing in it, +immediately affect the server, without a need to rerun C<make> to +update I<blib/lib>. When the environment variable +C<APACHE_TEST_LIVE_DEV> is set to a true value during the +configuration phase (C<t/TEST -config>, C<Apache::Test> will +automatically unshift the I<project/lib> directory into C<@INC>, via +the autogenerated I<t/conf/modperl_inc.pl> file. + =head1 AUTHOR =head1 SEE ALSO
