blob: 549cf642f85b926d536d9ae514a5ac1695be4127 (
plain)
1
2
3
4
5
6
7
8
9
10
|
use strict;
use warnings FATAL => 'all';
use Apache::TestRequest;
use Apache::Test;
#skip all tests in this directory unless we have client http/1.1 support
plan tests => 1, \&need_http11;
ok 1;
|