blob: 2d3cf9f235344a354cc85d36389e3da21f7dd021 [file] [log] [blame]
# this test tests PerlRequire configuration directive
########################################################################
use strict;
use warnings FATAL => 'all';
use Apache::Test;
use Apache::TestUtil;
use Apache::TestRequest;
my $module = 'TestDirective::perlmodule';
plan tests => 1;
Apache::TestRequest::module($module);
my $config = Apache::Test::config();
my $hostport = Apache::TestRequest::hostport($config);
my $path = Apache::TestRequest::module2path($module);
t_debug("connecting to $hostport");
ok t_cmp(GET_BODY("/$path"),
$module,
"testing PerlModule in $module");