The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

use strict;
use warnings FATAL => 'all';

use Apache::Test;
use Apache::TestUtil;
use Apache::TestRequest;

my $config = Apache::Test::config();
my $path = Apache::TestRequest::module2path('TestHooks::startup');

my @modules = qw(default TestHooks::startup);

plan tests => scalar @modules;

my $expected = join '', "open_logs ok\n", "post_config ok\n";

for my $module (sort @modules) {

    Apache::TestRequest::module($module);
    my $hostport = Apache::TestRequest::hostport($config);
    t_debug("connecting to $hostport");

    ok t_cmp(GET_BODY_ASSERT("http://$hostport/$path"),
             $expected,
             "testing PostConfig");
}