blob: a84bf95cf1ee137769960de830a2870c20091c26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
use strict;
use warnings FATAL => 'all';
use Apache::Test;
plan tests => 3;
my $config = Apache::Test::config();
ok $config;
my $server = $config->server;
ok $server;
ok $server->ping;
|