Acme-Code-Police
view release on metacpan or search on metacpan
lib/Acme/Code/Police.pm view on Meta::CPAN
you're probably one of those wimps who uses C<strict>.
This was inspired by an offhand joke by merlyn (merlyn@stonehenge.com) at a
Damian Conway talk. He is, however, not responsible for this and shouldn't be
held liable if you're a bonehead.
=head1 BUGS
August 1, 2001: Currently, this program will not work if any other module is
loaded that uses C<strict>. I could have tried to code around that by using a
bunch of evals or something, but so what? It's a joke.
=cut
t/pod-coverage.t view on Meta::CPAN
#!perl -T
use Test::More;
use strict;
use Acme::Code::Police;
eval "use Test::Pod::Coverage 1.04";
plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage" if $@;
all_pod_coverage_ok();
#!perl -T
use Test::More;
use strict;
eval "use Test::Pod 1.14";
plan skip_all => "Test::Pod 1.14 required for testing POD" if $@;
all_pod_files_ok();
( run in 1.499 second using v1.01-cache-2.11-cpan-5a3173703d6 )