File Coverage

blib/lib/Net/OpenSocial/Client/Container/MySpace.pm
Criterion Covered Total %
statement 6 8 75.0
branch n/a
condition n/a
subroutine 2 3 66.6
pod 1 1 100.0
total 9 12 75.0


line stmt bran cond sub pod time code
1             package Net::OpenSocial::Client::Container::MySpace;
2              
3 1     1   6 use Any::Moose;
  1         3  
  1         9  
4             extends 'Net::OpenSocial::Client::Container';
5              
6             sub BUILDARGS {
7 0     0 1   my ( $self, @args ) = @_;
8             return {
9 0           request_token_endpoint => q{http://api.myspace.com/request_token},
10             authorize_endpoint => q{http://api.myspace.com/authorize},
11             access_token_endpoint => q{http://api.myspace.com/access_token},
12             rest_endpoint => q{http://api.myspace.com/v2},
13             };
14             }
15              
16 1     1   599 no Any::Moose;
  1         1  
  1         5  
17             __PACKAGE__->meta->make_immutable;
18             1;
19              
20             =head1 NAME
21              
22             Net::OpenSocial::Client::Container::MySpace - myspace
23              
24             =head1 SYNOPSIS
25              
26             =head1 DESCRIPTION
27              
28             =head1 METHODS
29              
30             =head2 BUILDARGS
31              
32             See L, 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              
48