File Coverage

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