Apache-Bootstrap
view release on metacpan or search on metacpan
t/00-load.t view on Meta::CPAN
isa_ok( $mp2_bootstrap, $pkg );
}
SKIP: {
skip "Skipping dual bootstrap", 2 if ( $skip_mp1 or $skip_mp2 );
$dual_bootstrap =
eval { $pkg->new( { mod_perl => 0, mod_perl2 => 1.99022 } ); };
# this should not throw an exception since individual bootstraps worked
ok( !$@, 'no exception thrown for dual bootstrap: ' . $@ );
isa_ok( $dual_bootstrap, $pkg );
}
}
diag("Testing Apache::Bootstrap $Apache::Bootstrap::VERSION, Perl $], $^X");
eval { require Apache::Test };
my $skip = $@ ? 'Apache::Test not installed, skipping test' : undef;
( run in 0.335 second using v1.01-cache-2.11-cpan-496ff517765 )