]> git.donarmstrong.com Git - deb_pkgs/libhtml-calendarmonth-perl.git/blob - t/release-pod-coverage.t
New upstream release
[deb_pkgs/libhtml-calendarmonth-perl.git] / t / release-pod-coverage.t
1 #!perl
2
3 BEGIN {
4   unless ($ENV{RELEASE_TESTING}) {
5     require Test::More;
6     Test::More::plan(skip_all => 'these tests are for release candidate testing');
7   }
8 }
9
10
11 use Test::More;
12
13 eval "use Test::Pod::Coverage 1.08";
14 plan skip_all => "Test::Pod::Coverage 1.08 required for testing POD coverage"
15   if $@;
16
17 eval "use Pod::Coverage::TrustPod";
18 plan skip_all => "Pod::Coverage::TrustPod required for testing POD coverage"
19   if $@;
20
21 all_pod_coverage_ok({ coverage_class => 'Pod::Coverage::TrustPod' });