File Coverage

blib/lib/Net/PMP/CollectionDoc/Item.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Net::PMP::CollectionDoc::Item;
2 3     3   17 use Moose;
  3         6  
  3         12  
3 3     3   15452 use Carp;
  3         4  
  3         148  
4 3     3   16 use Data::Dump qw( dump );
  3         6  
  3         169  
5             extends 'Net::PMP::CollectionDoc';
6              
7             our $VERSION = '0.006';
8              
9             # do NOT make immutable. somehow this breaks subclassing of CollectionDoc
10             #__PACKAGE__->meta->make_immutable();
11              
12             1;
13              
14             __END__
15              
16             =head1 NAME
17              
18             Net::PMP::CollectionDoc::Item - item from a Net::PMP::CollectionDoc::Items object
19              
20             =head1 SYNOPSIS
21              
22             # see Net::PMP::CollectionDoc
23              
24             =head1 METHODS
25              
26             L<Net::PMP::CollectionDoc::Item> is a subclass of L<Net::PMP::CollectionDoc>. It currently does not implement
27             any new methods or functionality. It may disappear in a future release.
28              
29             =head1 AUTHOR
30              
31             Peter Karman, C<< <karman at cpan.org> >>
32              
33             =head1 BUGS
34              
35             Please report any bugs or feature requests to C<bug-net-pmp at rt.cpan.org>, or through
36             the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Net-PMP>. I will be notified, and then you'll
37             automatically be notified of progress on your bug as I make changes.
38              
39              
40             =head1 SUPPORT
41              
42             You can find documentation for this module with the perldoc command.
43              
44             perldoc Net::PMP::CollectionDoc::Item
45              
46              
47             You can also look for information at:
48              
49             =over 4
50              
51             =item * RT: CPAN's request tracker (report bugs here)
52              
53             L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Net-PMP>
54              
55             =item * AnnoCPAN: Annotated CPAN documentation
56              
57             L<http://annocpan.org/dist/Net-PMP>
58              
59             =item * CPAN Ratings
60              
61             L<http://cpanratings.perl.org/d/Net-PMP>
62              
63             =item * Search CPAN
64              
65             L<http://search.cpan.org/dist/Net-PMP/>
66              
67             =back
68              
69              
70             =head1 ACKNOWLEDGEMENTS
71              
72             American Public Media and the Public Media Platform sponsored the development of this module.
73              
74             =head1 LICENSE AND COPYRIGHT
75              
76             Copyright 2013 American Public Media Group
77              
78             See the LICENSE file that accompanies this module.
79              
80             =cut