NAME

Pod::Coverage::TrustPod - allow POD to contain Pod::Coverage hints

VERSION

version 0.001

DESCRIPTION

This is a Pod::Coverage subclass (actually, a subclass of Pod::Coverage::CountParents) that allows the POD itself to declare certain symbol names trusted.

Here is a sample Perl module:

package Foo::Bar;

=head1 NAME

Foo::Bar - a bar at which fooes like to drink

=head1 METHODS

=head2 fee

returns the bar tab

=cut

sub fee { ... }

=head2 fie

scoffs at bar tab

=cut

sub fie { ... }

sub foo { ... }

=begin Pod::Coverage

  foo

=end Pod::Coverage

=cut

This file would report full coverage, because any non-empty lines inside a block of POD targeted to Pod::Coverage are treated as trustme patterns. Leading and trailing whitespace is stripped and the remainder is treated as a regular expression.

COPYRIGHT AND AUTHOR

This distribution was written by Ricardo Signes, <rjbs@cpan.org>.

Copyright 2008. This is free software, released under the same terms as perl itself.