File Coverage

blib/lib/Net/OpenSocial/Client/Container/Partuza.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::Partuza;
2              
3 1     1   6 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           request_token_endpoint => q{http://www.partuza.nl/oauth/request_token},
10             authorize_endpoint => q{http://www.partuza.nl/oauth/request_token},
11             access_token_endpoint => q{http://www.partuza.nl/oauth/access_token},
12             rest_endpoint => q{http://modules.partuza.nl/social/rest},
13             use_request_body_hash => 1,
14             };
15             }
16              
17 1     1   485 no Any::Moose;
  1         4  
  1         4  
18             __PACKAGE__->meta->make_immutable;
19             1;
20              
21             =head1 NAME
22              
23             Net::OpenSocial::Client::Container::Partuza - partuza
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              
49