stas 2003/10/02 00:31:53
Modified: perl-framework/Apache-Test/t request.t
perl-framework/Apache-Test Changes
Log:
fix t/request.t to get /index.html, instead of / since not everybody
uses mod_dir
Submitted by: Steve Piner <[EMAIL PROTECTED]>
Revision Changes Path
1.3 +1 -1 httpd-test/perl-framework/Apache-Test/t/request.t
Index: request.t
===================================================================
RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/t/request.t,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -u -r1.2 -r1.3
--- request.t 4 Apr 2001 04:36:59 -0000 1.2
+++ request.t 2 Oct 2003 07:31:53 -0000 1.3
@@ -6,7 +6,7 @@
plan tests => 9, \&have_lwp;
-my $url = '/';
+my $url = '/index.html';
ok GET_OK $url;
ok GET_RC $url;
1.50 +3 -0 httpd-test/perl-framework/Apache-Test/Changes
Index: Changes
===================================================================
RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/Changes,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -u -r1.49 -r1.50
--- Changes 1 Oct 2003 18:32:26 -0000 1.49
+++ Changes 2 Oct 2003 07:31:53 -0000 1.50
@@ -8,6 +8,9 @@
=item 1.05-dev
+fix t/request.t to get /index.html, instead of / since not everybody
+uses mod_dir [Steve Piner <[EMAIL PROTECTED]>]
+
when testing whether Apache started as root and running under 'nobody'
or alike, will be able to -r/-w/-x in t/ use 'su' instead of 'sudo',
the latter is not available on all unix platforms. [Vivek Khera