HTTP-Server-Simple-Mason
view release on metacpan or search on metacpan
use Test::More;
BEGIN {
delete @ENV{ qw( http_proxy HTTP_PROXY ) };
if (eval { require LWP::Simple }) {
plan tests => 5;
} else {
Test::More->import(skip_all =>"LWP::Simple not installed: $@");
}
}
use_ok(HTTP::Server::Simple::Mason);
use File::Temp qw/tempdir/;
t/04unhandlederrors.t view on Meta::CPAN
use Test::More;
BEGIN {
delete @ENV{ qw( http_proxy HTTP_PROXY ) };
if (eval { require LWP::Simple }) {
plan tests => 5;
} else {
Test::More->import(skip_all =>"LWP::Simple not installed: $@");
}
}
use_ok( HTTP::Server::Simple::Mason);
use File::Temp qw/tempdir/;
t/05handlederrors.t view on Meta::CPAN
use Test::More;
BEGIN {
delete @ENV{ qw( http_proxy HTTP_PROXY ) };
if (eval { require LWP::Simple }) {
plan tests => 5;
} else {
Test::More->import(skip_all =>"LWP::Simple not installed: $@");
}
}
use_ok( HTTP::Server::Simple::Mason);
use File::Temp qw/tempdir/;
( run in 1.053 second using v1.01-cache-2.11-cpan-71847e10f99 )