427f0cb12ffc4c9adfee5f5887408af262088794
[dbsrgits/SQL-Abstract.git] / xt / 91podcoverage.t
1 use warnings;
2 use strict;
3
4 use Test::More;
5
6 eval "use Pod::Coverage 0.19";
7 plan skip_all => 'Pod::Coverage 0.19 required' if $@;
8 eval "use Test::Pod::Coverage 1.04";
9 plan skip_all => 'Test::Pod::Coverage 1.04 required' if $@;
10
11 plan skip_all => 'set TEST_POD to enable this test'
12   unless ( $ENV{TEST_POD} || -e 'MANIFEST.SKIP' );
13
14 my @modules = sort { $a cmp $b } ( Test::Pod::Coverage::all_modules() );
15
16 # Since this is about checking documentation, a little documentation
17 # of what this is doing might be in order...
18 # The exceptions structure below is a hash keyed by the module
19 # name.  The value for each is a hash, which contains one or more
20 # (although currently more than one makes no sense) of the following
21 # things:-
22 #   skip   => a true value means this module is not checked
23 #   ignore => array ref containing list of methods which
24 #             do not need to be documented.
25 my $exceptions = {
26     'SQL::Abstract' => {
27         ignore => [
28             qw/belch
29               puke/
30         ]
31     },
32     'SQL::Abstract::Tree' => { ignore => [qw(BUILDARGS)] },
33     'SQL::Abstract::Test' => { skip => 1 },
34     'DBIx::Class::Storage::Debug::PrettyPrint' => { skip => 1 },
35 };
36
37 foreach my $module (@modules) {
38   SKIP:
39     {
40         skip "$module - No user visible methods",
41           1
42           if ( $exceptions->{$module}{skip} );
43
44         # build parms up from ignore list
45         my $parms = {};
46         $parms->{trustme} =
47           [ map { qr/^$_$/ } @{ $exceptions->{$module}{ignore} } ]
48           if exists( $exceptions->{$module}{ignore} );
49
50         # run the test with the potentially modified parm set
51         pod_coverage_ok( $module, $parms, "$module POD coverage" );
52     }
53 }
54
55 done_testing;