stas 2004/07/08 00:40:56
Modified: t/hooks authz.t t/directive perl.t Log: don't use \&foo syntax in the skip conditions, to avoid it becoming the bogus\&foo && \&bar in the future, when more requirements are added Revision Changes Path 1.3 +1 -1 modperl-2.0/t/hooks/authz.t Index: authz.t =================================================================== RCS file: /home/cvs/modperl-2.0/t/hooks/authz.t,v retrieving revision 1.2 retrieving revision 1.3 diff -u -u -r1.2 -r1.3 --- authz.t 18 Apr 2003 06:18:57 -0000 1.2 +++ authz.t 8 Jul 2004 07:40:56 -0000 1.3 @@ -4,7 +4,7 @@ use Apache::Test; use Apache::TestRequest; -plan tests => 4, \&have_lwp; +plan tests => 4, have_lwp; my $location = "/TestHooks__authz"; 1.4 +1 -1 modperl-2.0/t/directive/perl.t Index: perl.t =================================================================== RCS file: /home/cvs/modperl-2.0/t/directive/perl.t,v retrieving revision 1.3 retrieving revision 1.4 diff -u -u -r1.3 -r1.4 --- perl.t 16 Jun 2004 17:03:27 -0000 1.3 +++ perl.t 8 Jul 2004 07:40:56 -0000 1.4 @@ -4,7 +4,7 @@ use Apache::Test; use Apache::TestRequest; -plan tests => 8, \&have_auth; +plan tests => 8, have_auth; #so we don't have to require lwp my @auth = (Authorization => 'Basic ZG91Z206Zm9v'); #dougm:foo