File Coverage

blib/lib/CatalystX/OAuth2/ClientContainer.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package CatalystX::OAuth2::ClientContainer;
2 1     1   910 use Moose::Role;
  1         3  
  1         13  
3              
4             # ABSTRACT: A role for providing an oauth2 client object to an arbitrary class
5              
6             has oauth2 => (
7             isa => 'CatalystX::OAuth2::Client',
8             is => 'rw',
9             clearer => 'clear_oauth2'
10             );
11              
12             1;
13              
14             __END__
15              
16             =pod
17              
18             =head1 NAME
19              
20             CatalystX::OAuth2::ClientContainer - A role for providing an oauth2 client object to an arbitrary class
21              
22             =head1 VERSION
23              
24             version 0.001006
25              
26             =head1 AUTHOR
27              
28             Eden Cardim <edencardim@gmail.com>
29              
30             =head1 COPYRIGHT AND LICENSE
31              
32             This software is copyright (c) 2017 by Suretec Systems Ltd.
33              
34             This is free software; you can redistribute it and/or modify it under
35             the same terms as the Perl 5 programming language system itself.
36              
37             =cut