Test::Pod::Coverage

  • http://search.cpan.org/dist/Test-Pod-Coverage
  • Written by Andy Lester (petdance)
  • Tests the POD to CODE ratio within your scripts and modules.
  • Reports on any functions without POD (with exceptions).
  • Single script required to test a complete distribution.
use Test::More;
eval "use Test::Pod::Coverage 0.08";
plan skip_all =>
  "Test::Pod::Coverage 0.08 required for testing POD coverage"
  if $@;
all_pod_coverage_ok();