10 'Test::Pod::Coverage 1.08',
14 # Don't run tests for installs
15 unless ( DBICTest::AuthorCheck->is_author || $ENV{AUTOMATED_TESTING} || $ENV{RELEASE_TESTING} ) {
16 plan( skip_all => "Author tests not required for installation" );
19 # Load the testing modules
20 foreach my $MODULE ( @MODULES ) {
24 ? die( "Failed to load required release-testing module $MODULE" )
25 : plan( skip_all => "$MODULE not available for testing" );
29 # Since this is about checking documentation, a little documentation
30 # of what this is doing might be in order.
31 # The exceptions structure below is a hash keyed by the module
32 # name. Any * in a name is treated like a wildcard and will behave
33 # as expected. Modules are matched by longest string first, so
34 # A::B::C will match even if there is A::B*
36 # The value for each is a hash, which contains one or more
37 # (although currently more than one makes no sense) of the following
39 # skip => a true value means this module is not checked
40 # ignore => array ref containing list of methods which
41 # do not need to be documented.
45 MODIFY_CODE_ATTRIBUTES
51 'DBIx::Class::Row' => {
56 'DBIx::Class::ResultSource' => {
58 compare_relationship_keys
65 'DBIx::Class::ResultSourceHandle' => {
71 'DBIx::Class::Storage' => {
77 'DBIx::Class::Schema' => {
79 setup_connection_class
83 'DBIx::Class::Schema::Versioned' => {
89 'DBIx::Class::Storage::DBI::Replicated*' => {
92 disconnect_call_do_sql
96 'DBIx::Class::ClassResolver::PassThrough' => { skip => 1 },
97 'DBIx::Class::Componentised' => { skip => 1 },
98 'DBIx::Class::Relationship::*' => { skip => 1 },
99 'DBIx::Class::ResultSetProxy' => { skip => 1 },
100 'DBIx::Class::ResultSourceProxy' => { skip => 1 },
101 'DBIx::Class::Storage::Statistics' => { skip => 1 },
102 'DBIx::Class::Storage::DBI::Replicated::Types' => { skip => 1 },
104 # test some specific components whose parents are exempt below
105 'DBIx::Class::Relationship::Base' => {},
108 'DBIx::Class::SQLAHacks*' => { skip => 1 },
109 'DBIx::Class::Storage::DBI*' => { skip => 1 },
110 'SQL::Translator::*' => { skip => 1 },
112 # deprecated / backcompat stuff
113 'DBIx::Class::CDBICompat*' => { skip => 1 },
114 'DBIx::Class::ResultSetManager' => { skip => 1 },
115 'DBIx::Class::DB' => { skip => 1 },
117 # skipped because the synopsis covers it clearly
118 'DBIx::Class::InflateColumn::File' => { skip => 1 },
122 for my $string (keys %$exceptions) {
123 my $ex = $exceptions->{$string};
124 $string =~ s/\*/'.*?'/ge;
125 my $re = qr/^$string$/;
126 $ex_lookup->{$re} = $ex;
129 my @modules = sort { $a cmp $b } (Test::Pod::Coverage::all_modules());
131 foreach my $module (@modules) {
134 my ($match) = List::Util::first
136 (sort { length $b <=> length $a || $b cmp $a } (keys %$ex_lookup) )
139 my $ex = $ex_lookup->{$match} if $match;
141 skip ("$module exempt", 1) if ($ex->{skip});
143 # build parms up from ignore list
146 [ map { qr/^$_$/ } @{ $ex->{ignore} } ]
147 if exists($ex->{ignore});
149 # run the test with the potentially modified parm set
150 pod_coverage_ok($module, $parms, "$module POD coverage");