release tests using Test::Pod and Test::Pod::Coverage
[gitmo/MooseX-ConfigFromFile.git] / t / release-pod-coverage.t
1 use strict;
2 use warnings;
3 use Test::More;
4
5 BEGIN {
6   unless ($ENV{RELEASE_TESTING}) {
7     plan skip_all => 'these tests are for release candidate testing';
8   }
9 }
10
11 eval "use Test::Pod::Coverage 1.08";
12 plan skip_all => "Test::Pod::Coverage 1.08 required for testing POD coverage"
13   if $@;
14
15 eval "use Pod::Coverage::TrustPod";
16 plan skip_all => "Pod::Coverage::TrustPod required for testing POD coverage"
17   if $@;
18
19 all_pod_coverage_ok({ coverage_class => 'Pod::Coverage::TrustPod' });