From: Frédéric Buclin Date: Thu, 26 Sep 2013 19:14:16 +0000 (+0200) Subject: Bug 784072 (2nd part): Exclude extensions from POD coverage checks X-Git-Tag: bugzilla-4.5.1~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0bb48df63d01216e295140adb3642333c0767c67;p=thirdparty%2Fbugzilla.git Bug 784072 (2nd part): Exclude extensions from POD coverage checks --- diff --git a/t/011pod.t b/t/011pod.t index d4e0fb780c..7709ade16d 100644 --- a/t/011pod.t +++ b/t/011pod.t @@ -43,6 +43,7 @@ use constant MODULE_WHITELIST => qw( Bugzilla::Auth::Verify:: Bugzilla::BugUrl:: Bugzilla::Config:: + Bugzilla::Extension:: Bugzilla::Job:: ); @@ -82,6 +83,7 @@ foreach my $file (@module_files) { my $module = $file; $module =~ s/\.pm$//; $module =~ s#/#::#g; + $module =~ s/^extensions/Bugzilla::Extension/; my @whitelist = (DEFAULT_WHITELIST); push(@whitelist, $sub_whitelist{$module}) if $sub_whitelist{$module};