gozer 2004/03/29 14:52:46
Modified: t/response/TestApache conftree.pm Log: Check a more hard-coded configuration value in the conftree tests. Listen is something that has a tendency to change every once in a while. Revision Changes Path 1.10 +2 -2 modperl-2.0/t/response/TestApache/conftree.pm Index: conftree.pm =================================================================== RCS file: /home/cvs/modperl-2.0/t/response/TestApache/conftree.pm,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- conftree.pm 21 Feb 2004 20:28:47 -0000 1.9 +++ conftree.pm 29 Mar 2004 22:52:46 -0000 1.10 @@ -27,9 +27,9 @@ ok $tree; - my $listen = $tree->lookup('Listen'); + my $hostname_lookups = $tree->lookup('HostnameLookups'); - ok t_cmp(join(':', $vars->{servername}, $vars->{port}), $listen); + ok t_cmp("Off", $hostname_lookups); my $documentroot = $tree->lookup('DocumentRoot');