12 lines
256 B
Perl
12 lines
256 B
Perl
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;
|
|
|