File Coverage

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