]> git.decadent.org.uk Git - maypole.git/blob - t/01.httpd-basic.t
made setting user() and session() backward compatible
[maypole.git] / t / 01.httpd-basic.t
1 use Test::More tests=>2;
2 SKIP: {
3   no warnings 'all';
4   my $have_httpd = eval ' use HTTP::Server::Simple::Static; $HTTP::Server::Simple::Static::VERSION; ';
5   warn "have_httpd : $have_httpd\n";
6   skip ('Maypole::HTTPD tests', 2) unless ( $have_httpd );
7   use_ok("Maypole::HTTPD");
8   use_ok("Maypole::HTTPD::Frontend");
9 };
10