avoid using pod checking functions that plan
[p5sagit/strictures.git] / xt / pod.t
1 use Test::More;
2 use Test::Pod;
3 use Test::Pod::Coverage;
4 use strict;
5 use warnings FATAL => 'all';
6
7 pod_file_ok($_)
8   for all_pod_files;
9 pod_coverage_ok($_, { coverage_class => 'Pod::Coverage::CountParents' })
10   for all_modules;
11
12 done_testing;