1Pod::Coverage::TrustPodU(s3e)r Contributed Perl DocumentaPtoido:n:Coverage::TrustPod(3)
2
3
4

NAME

6       Pod::Coverage::TrustPod - allow a module's pod to contain Pod::Coverage
7       hints
8

VERSION

10       version 0.092830
11

DESCRIPTION

13       This is a Pod::Coverage subclass (actually, a subclass of
14       Pod::Coverage::CountParents) that allows the POD itself to declare
15       certain symbol names trusted.
16
17       Here is a sample Perl module:
18
19         package Foo::Bar;
20       our $VERSION = '0.092830';
21
22         =head1 NAME
23
24         Foo::Bar - a bar at which fooes like to drink
25
26         =head1 METHODS
27
28         =head2 fee
29
30         returns the bar tab
31
32         =cut
33
34         sub fee { ... }
35
36         =head2 fie
37
38         scoffs at bar tab
39
40         =cut
41
42         sub fie { ... }
43
44         sub foo { ... }
45
46         =begin Pod::Coverage
47
48           foo
49
50         =end Pod::Coverage
51
52         =cut
53
54       This file would report full coverage, because any non-empty lines
55       inside a block of POD targeted to Pod::Coverage are treated as
56       "trustme" patterns.  Leading and trailing whitespace is stripped and
57       the remainder is treated as a regular expression.
58

AUTHOR

60         Ricardo SIGNES <rjbs@cpan.org>
61
63       This software is copyright (c) 2009 by Ricardo SIGNES.
64
65       This is free software; you can redistribute it and/or modify it under
66       the same terms as the Perl 5 programming language system itself.
67
68
69
70perl v5.12.0                      2009-10-11        Pod::Coverage::TrustPod(3)
Impressum