Acme-Fork-Bomb
view release on metacpan or search on metacpan
t/fork-bomb.t view on Meta::CPAN
#!/usr/bin/perl
use strict;
use warnings;
use Test::More;
BEGIN {
unless ($ENV{REALLY_FORK_BOMB}) {
plan skip_all => "Are you crazy? Do not run this test. If you really want this test, set the REALLY_FORK_BOMB environment to a true value.";
}
}
use Acme::Fork::Bomb;
ok 1;
done_testing;
( run in 0.689 second using v1.01-cache-2.11-cpan-f29a10751f0 )