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