author test for new warning categories
[p5sagit/strictures.git] / xt / pod.t
CommitLineData
eae006ee 1use Test::More;
2use Test::Pod;
3use Test::Pod::Coverage;
4use strict;
5use warnings FATAL => 'all';
6
edde9d10 7pod_file_ok($_)
8 for all_pod_files;
9pod_coverage_ok($_, { coverage_class => 'Pod::Coverage::CountParents' })
10 for all_modules;
eae006ee 11
12done_testing;