blob: 2aa7f6db1c31d175f0be71b4f56a02e7876b5bc2 [file] [log] [blame]
# please insert nothing before this line: -*- mode: cperl; cperl-indent-level: 4; cperl-continued-statement-offset: 4; indent-tabs-mode: nil -*-
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",
);
}