3 eval "use Pod::Coverage 0.19";
4 plan skip_all => 'Pod::Coverage 0.19 required' if $@;
5 eval "use Test::Pod::Coverage 1.04";
6 plan skip_all => 'Test::Pod::Coverage 1.04 required' if $@;
8 plan skip_all => 'set TEST_POD to enable this test'
9 unless ( $ENV{TEST_POD} || -e 'MANIFEST.SKIP' );
11 my @modules = sort { $a cmp $b } ( Test::Pod::Coverage::all_modules() );
12 plan tests => scalar(@modules);
14 # Since this is about checking documentation, a little documentation
15 # of what this is doing might be in order...
16 # The exceptions structure below is a hash keyed by the module
17 # name. The value for each is a hash, which contains one or more
18 # (although currently more than one makes no sense) of the following
20 # skip => a true value means this module is not checked
21 # ignore => array ref containing list of methods which
22 # do not need to be documented.
30 'SQL::Abstract::Test' => { skip => 1 },
31 'DBIx::Class::Storage::Debug::PrettyPrint' => { skip => 1 },
34 foreach my $module (@modules) {
37 skip "$module - No user visible methods",
39 if ( $exceptions->{$module}{skip} );
41 # build parms up from ignore list
44 [ map { qr/^$_$/ } @{ $exceptions->{$module}{ignore} } ]
45 if exists( $exceptions->{$module}{ignore} );
47 # run the test with the potentially modified parm set
48 pod_coverage_ok( $module, $parms, "$module POD coverage" );