depend on the version of Test::More that added done_testing
[p5sagit/Module-Metadata.git] / xt / pod.t
1 use Test::More 0.88;
2 use Test::Pod;
3 use Test::Pod::Coverage;
4 use strict;
5 use warnings FATAL => 'all';
6
7 # the all_ things attempt to plan, which we didn't want, so stop them
8 # from doing that
9 no warnings 'redefine';
10 local *Test::Builder::plan = sub { };
11
12 all_pod_files_ok;
13 all_pod_coverage_ok({ coverage_class => 'Pod::Coverage::CountParents' });
14
15 done_testing;