File Coverage

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