The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Pod::Coverage::TrustMe::Parser - Parse pod for checking coverage

SYNOPSIS

  my $parser = Pod::Coverage::TrustMe::Parser->new;
  $parser->parse_file($pod_file);

  $parser->
  if ($self->{nonwhitespace}) {
    $parser->ignore_empty(1);
  }

DESCRIPTION

A subclass of Pod::Simple which extracts headings and items to check for covered symbols.

METHODS

ignore_empty
  $parser->ignore_empty(1);

Can be called to set if empty sections should be in ignored when checking for covered symbols.

covered

Returns an arrayref of symbols that are covered by the pod.

Returns an arrayref of the modules that are linked to in the pod.

trusted

Returns an arrayref of symbols listed as trusted using =for Pod::Coverage annotations.

AUTHORS

See Pod::Coverage::TrustMe for authors.

COPYRIGHT AND LICENSE

See Pod::Coverage::TrustMe for the copyright and license.