| Module-New documentation | Contained in the Module-New distribution. |
Module::New::File::PodCoverageTest
a template for a Test::Pod::Coverage test.
Kenichi Ishigaki, <ishigaki at cpan.org>
Copyright (C) 2007-2009 by Kenichi Ishigaki.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| Module-New documentation | Contained in the Module-New distribution. |
package Module::New::File::PodCoverageTest; use strict; use warnings; use Module::New::File; file 't/99_podcoverage.t' => content { return <<'EOT'; use strict; use warnings; use Test::More; eval "use Test::Pod::Coverage 1.04"; plan skip_all => 'Test::Pod::Coverage 1.04 required' if $@; plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD}; all_pod_coverage_ok(); EOT }; 1; __END__