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