From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
|
#!perl -w
BEGIN {
unless ( $ENV {RELEASE_TESTING}) {
Test::More::plan( skip_all => 'these tests are for release candidate testing' );
}
}
Test::Class::runtests(Server::Control::t::Apache->new);
|