Update changelog
[catagits/Catalyst-Runtime.git] / t / author / podcoverage.t
CommitLineData
91b4b595 1use strict;
2use warnings;
3use Test::More;
4
5use Pod::Coverage 0.19;
6use Test::Pod::Coverage 1.04;
7
9c74923d 8my @modules = all_modules;
9our @private = ( 'BUILD' );
10foreach my $module (@modules) {
11 local @private = (@private, 'run') if $module =~ /^Catalyst::Script::/;
2a2c99c6 12 pod_coverage_ok($module, {
13 also_private => \@private,
14 coverage_class => 'Pod::Coverage::TrustPod',
15 });
9c74923d 16}
17
18done_testing;
91b4b595 19