We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7406c02 commit e97d84fCopy full SHA for e97d84f
t/POD.t
@@ -28,11 +28,11 @@ plan tests => $moduleCount;
28
foreach my $package (sort @modules) {
29
my $pc = Pod::Coverage->new(
30
package => $package,
31
- also_private => [ qr/definition/ ],
+ also_private => [ qr/^definition$/, qr/^run$/],
32
nonwhitespace => ($ENV{POD_COVERAGE} == 3 ? 1 : 0),
33
);
34
my $coverage = $pc->coverage > $threshold;
35
- my $goodReason = $pc->why_unrated() eq 'no public symbols defined';
+ my $goodReason = $pc->why_unrated() eq'no public symbols defined';
36
SKIP: {
37
skip "No subroutines found by Devel::Symdump for $package", 1 if $goodReason;
38
ok($coverage, sprintf "%s has %d%% POD coverage", $package, $pc->coverage*100);
0 commit comments