1Pod::Coverage::ExportOnUlsye(r3)Contributed Perl DocumenPtoadt:i:oCnoverage::ExportOnly(3)
2
3
4
6 Pod::Coverage::ExportOnly - subclass of Pod::Coverage than only
7 examines exported functions
8
10 # all in one invocation
11 use Pod::Coverage::ExportOnly package => 'Fishy';
12
13 # straight OO
14 use Pod::Coverage::ExportOnly;
15 my $pc = new Pod::Coverage::ExportOnly package => 'Pod::Coverage';
16 print "We rock!" if $pc->coverage == 1;
17
19 This module extends Pod::Coverage to only check things explicitly set
20 up for export by the Exporter or UNIVERSAL::exports modules. If you
21 want full documentation we suggest you check the Pod::Coverage
22 documentation
23
25 Pod::Coverage, Exporter, UNIVERSAL::exports
26
28 Copyright (c) 2001 Richard Clamp, Michael Stevens. All rights reserved.
29 This program is free software; you can redistribute it and/or modify it
30 under the same terms as Perl itself.
31
32
33
34perl v5.32.0 2020-07-28 Pod::Coverage::ExportOnly(3)