File Coverage

blib/lib/Net/PMP/Profile/Video.pm
Criterion Covered Total %
statement 3 4 75.0
branch n/a
condition n/a
subroutine 1 2 50.0
pod 1 1 100.0
total 5 7 71.4


line stmt bran cond sub pod time code
1             package Net::PMP::Profile::Video;
2 1     1   794 use Moose;
  1         2  
  1         5  
3             extends 'Net::PMP::Profile::Media';
4              
5             our $VERSION = '0.102';
6              
7 0     0 1   sub get_profile_url {'https://api.pmp.io/profiles/video'}
8              
9             __PACKAGE__->meta->make_immutable();
10              
11             1;
12              
13             __END__
14              
15             =head1 NAME
16              
17             Net::PMP::Profile::Video - Rich Media Video Profile for PMP CollectionDoc
18              
19             =head1 SYNOPSIS
20              
21             # see Net::PMP::Profile::Media
22            
23             =cut
24              
25             =head1 DESCRIPTION
26              
27             Net::PMP::Profile::Video implements the CollectionDoc fields for the PMP Rich Media Profile
28             L<https://github.com/publicmediaplatform/pmpdocs/wiki/Rich-Media-Profiles>.
29              
30             =head1 METHODS
31              
32             This class extends L<Net::PMP::Profile>. Only new or overridden methods are documented here.
33              
34             =head2 get_profile_url
35              
36             Returns a string for the PMP profile's URL.
37              
38             =head1 AUTHOR
39              
40             Peter Karman, C<< <karman at cpan.org> >>
41              
42             =head1 BUGS
43              
44             Please report any bugs or feature requests to C<bug-net-pmp at rt.cpan.org>, or through
45             the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Net-PMP-Profile>. I will be notified, and then you'll
46             automatically be notified of progress on your bug as I make changes.
47              
48              
49             =head1 SUPPORT
50              
51             You can find documentation for this module with the perldoc command.
52              
53             perldoc Net::PMP
54              
55              
56             You can also look for information at:
57              
58             =over 4
59              
60             =item IRC
61              
62             Join #pmp on L<http://freenode.net>.
63              
64             =item RT: CPAN's request tracker (report bugs here)
65              
66             L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Net-PMP-Profile>
67              
68             =item AnnoCPAN: Annotated CPAN documentation
69              
70             L<http://annocpan.org/dist/Net-PMP-Profile>
71              
72             =item CPAN Ratings
73              
74             L<http://cpanratings.perl.org/d/Net-PMP-Profile>
75              
76             =item Search CPAN
77              
78             L<http://search.cpan.org/dist/Net-PMP-Profile/>
79              
80             =back
81              
82              
83             =head1 ACKNOWLEDGEMENTS
84              
85             American Public Media and the Public Media Platform sponsored the development of this module.
86              
87             =head1 LICENSE AND COPYRIGHT
88              
89             Copyright 2013 American Public Media Group
90              
91             See the LICENSE file that accompanies this module.
92              
93             =cut