File Coverage

blib/lib/Net/OpenSocial/Client/Resource/MediaItem.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::OpenSocial::Client::Resource::MediaItem;
2              
3 1     1   5 use Any::Moose;
  1         2  
  1         5  
4             extends 'Net::OpenSocial::Client::Resource';
5              
6 1     1   362 use Net::OpenSocial::Client::Type::Service qw(MEDIAITEM);
  1         1  
  1         115  
7              
8             has '+service' => (
9             default => MEDIAITEM,
10             );
11              
12 1     1   5 no Any::Moose;
  1         2  
  1         4  
13             __PACKAGE__->meta->make_immutable;
14             1;
15              
16             =head1 NAME
17              
18             Net::OpenSocial::Client::Resource::MediaItem - media item
19              
20             =head1 SYNOPSIS
21              
22             =head1 DESCRIPTION
23              
24             =head1 METHODS
25              
26             =head1 SEE ALSO
27              
28             L
29             L
30             L
31             L
32             L
33             L
34              
35             =head1 AUTHOR
36              
37             This module is based on Net::OpenSocial::Client::Resource::Person by
38             Lyo Kato, Elyo.kato@gmail.comE, updates were done by
39             Eugene A.Lukianov, Eeugene.spa@gmail.comE
40              
41             =head1 COPYRIGHT AND LICENSE
42              
43             Copyright (C) 2009 by Lyo Kato
44              
45             This library is free software; you can redistribute it and/or modify
46             it under the same terms as Perl itself, either Perl version 5.8.8 or,
47             at your option, any later version of Perl 5 you may have available.
48              
49             =cut
50