blob: 59d3c111825d13ba72e4ddf2662728b28907bc4b [file] [log] [blame]
use strict;
use warnings FATAL => 'all';
use Apache::Test;
use Apache::TestUtil;
use Apache::TestRequest;
use TestCommon::SameInterp;
plan tests => 2, need 'HTML::HeadParser';
my $location = "/TestHooks__inlined_handlers";
my $expected = "ok";
for (1..2) {
my $received = GET $location;
ok t_cmp(
$received->content,
$expected,
"anonymous handlers in httpd.conf test",
);
}