Merge 'module-install' into 'trunk'
[catagits/Catalyst-Plugin-RequireSSL.git] / xt / author / 03podcoverage.t
CommitLineData
6406f7c2 1use strict;
2use warnings;
3
4use Test::More;
5
6# Ensure a recent version of Test::Pod::Coverage
7my $min_tpc = 1.08;
8eval "use Test::Pod::Coverage $min_tpc";
9plan skip_all => "Test::Pod::Coverage $min_tpc required for testing POD coverage"
10 if $@;
11
12# Test::Pod::Coverage doesn't require a minimum Pod::Coverage version,
13# but older versions don't recognize some common documentation styles
14my $min_pc = 0.18;
15eval "use Pod::Coverage $min_pc";
16plan skip_all => "Pod::Coverage $min_pc required for testing POD coverage"
17 if $@;
18
19all_pod_coverage_ok();