fix the pod-coverage version required (by rjbs)
[catagits/Catalyst-Devel.git] / share / t / 03podcoverage.t.tt
CommitLineData
239b5fc0 1[% startperl %]
2use strict;
3use warnings;
4use Test::More;
5
6eval "use Test::Pod::Coverage 1.04";
7plan skip_all => 'Test::Pod::Coverage 1.04 required' if $@;
a770c342 8
9eval "use Pod::Coverage 0.20";
10plan skip_all => 'Pod::Coverage 0.20 required' if $@;
11
239b5fc0 12plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD};
13
14all_pod_coverage_ok();