blob: d3965d8d85e84261714c4121f273b52006181a2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
use strict;
use warnings FATAL => 'all';
use Apache::Test;
my $vars = Apache::Test::vars();
#skip all tests in this directory unless ssl is enabled
#and LWP has https support
plan tests => 1, [$vars->{ssl_module_name}, qw(LWP::Protocol::https)];
ok 1;
|