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