Add boilderplate POD
[catagits/Catalyst-Engine-STOMP.git] / t / 03_pod_coverage.t
1 use Test::More;
2
3 eval "use Pod::Coverage 0.19";
4 plan skip_all => 'Pod::Coverage 0.19 required' if $@;
5 eval "use Test::Pod::Coverage 1.04";
6 plan skip_all => 'Test::Pod::Coverage 1.04 required' if $@;
7 plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD} || -e 'inc/.author';
8
9 all_pod_coverage_ok(
10   {
11     also_private => [qw/BUILD BUILDARGS/]
12   }
13 );
14