File Coverage

blib/lib/Net/OpenSocial/Client/Container/Google.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::Google;
2              
3 1     1   5 use Any::Moose;
  1         3  
  1         7  
4             extends 'Net::OpenSocial::Client::Container';
5              
6             sub BUILDARGS {
7 0     0 1   my ( $self, @args ) = @_;
8             return {
9 0           rest_endpoint =>
10             q{http://www-opensocial-sandbox.googleusercontent.com/api/},
11             rpc_endpoint =>
12             q{http://www-opensocial-sandbox.googleusercontent.com/api/rpc},
13             use_request_body_hash => 1,
14             };
15             }
16              
17 1     1   552 no Any::Moose;
  1         3  
  1         5  
18             __PACKAGE__->meta->make_immutable;
19             1;
20              
21             =head1 NAME
22              
23             Net::OpenSocial::Client::Container::Google - google
24              
25             =head1 SYNOPSIS
26              
27             =head1 DESCRIPTION
28              
29             =head1 METHODS
30              
31             =head2 BUILDARGS
32              
33             See L, L
34              
35             =head1 AUTHOR
36              
37             Lyo Kato, Elyo.kato@gmail.comE
38              
39             =head1 COPYRIGHT AND LICENSE
40              
41             Copyright (C) 2009 by Lyo Kato
42              
43             This library is free software; you can redistribute it and/or modify
44             it under the same terms as Perl itself, either Perl version 5.8.8 or,
45             at your option, any later version of Perl 5 you may have available.
46              
47             =cut
48