Module::New::File::PodCoverageTest - Module::New::File::PodCoverageTest documentation


Module-New documentation Contained in the Module-New distribution.

Index


Code Index:

NAME

Top

Module::New::File::PodCoverageTest

DESCRIPTION

Top

a template for a Test::Pod::Coverage test.

AUTHOR

Top

Kenichi Ishigaki, <ishigaki at cpan.org>

COPYRIGHT AND LICENSE

Top


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__