File Coverage

blib/lib/CatalystX/OAuth2/Request.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::Request;
2 8     8   55 use Moose::Role;
  8         17  
  8         57  
3              
4             # ABSTRACT: A role for building oauth2-capable request objects
5              
6             has oauth2 => (isa => 'CatalystX::OAuth2', is => 'ro', required => 1);
7              
8             1;
9              
10             __END__
11              
12             =pod
13              
14             =head1 NAME
15              
16             CatalystX::OAuth2::Request - A role for building oauth2-capable request objects
17              
18             =head1 VERSION
19              
20             version 0.001006
21              
22             =head1 AUTHOR
23              
24             Eden Cardim <edencardim@gmail.com>
25              
26             =head1 COPYRIGHT AND LICENSE
27              
28             This software is copyright (c) 2017 by Suretec Systems Ltd.
29              
30             This is free software; you can redistribute it and/or modify it under
31             the same terms as the Perl 5 programming language system itself.
32              
33             =cut