Pod::Coverage::CountParents - subclass of Pod::Coverage that examines the inheritance tree
Contents
Description
This module extends Pod::Coverage to include the documentation from parent classes when identifying the
coverage of the code.
If you want full documentation we suggest you check the Pod::Coverage documentation.
Name
Pod::Coverage::CountParents - subclass of Pod::Coverage that examines the inheritance tree
See Also
Pod::Coverage, base
Synopsis
# all in one invocation
use Pod::Coverage::CountParents package => 'Fishy';
# straight OO
use Pod::Coverage::CountParents;
my $pc = new Pod::Coverage::CountParents package => 'Pod::Coverage';
print "We rock!" if $pc->coverage == 1;
