Test-CPAN-Health
view release on metacpan or search on metacpan
lib/Test/CPAN/Health/Check/PODCoverage.pm view on Meta::CPAN
use parent 'Test::CPAN::Health::Check';
our $VERSION = '0.1.0';
Readonly::Scalar my $SCORE_PASS => 90; # >= this -> pass
Readonly::Scalar my $SCORE_WARN => 50; # >= this -> warn; below -> fail
# Subs that are never expected to have their own POD section.
Readonly::Hash my %EXEMPT_SUBS => map { $_ => 1 } qw(
DESTROY AUTOLOAD BEGIN END INIT CHECK UNITCHECK import unimport
);
=head1 NAME
Test::CPAN::Health::Check::PODCoverage - Check that all public methods have POD
=head1 SYNOPSIS
use Test::CPAN::Health::Check::PODCoverage;
( run in 0.504 second using v1.01-cache-2.11-cpan-9581c071862 )