File Coverage

blib/lib/PONAPI/Client/Request/Role/IsGET.pm
Criterion Covered Total %
statement 7 7 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 0 1 0.0
total 10 11 90.9


line stmt bran cond sub pod time code
1             # ABSTRACT: request - role - is GET
2             package PONAPI::Client::Request::Role::IsGET;
3              
4 4     4   1922 use Moose::Role;
  4         9  
  4         24  
5              
6 9     9 0 20 sub method { 'GET' }
7              
8 4     4   18677 no Moose::Role; 1;
  4         8  
  4         15  
9              
10             __END__
11              
12             =pod
13              
14             =encoding UTF-8
15              
16             =head1 NAME
17              
18             PONAPI::Client::Request::Role::IsGET - request - role - is GET
19              
20             =head1 VERSION
21              
22             version 0.002011
23              
24             =head1 AUTHORS
25              
26             =over 4
27              
28             =item *
29              
30             Mickey Nasriachi <mickey@cpan.org>
31              
32             =item *
33              
34             Stevan Little <stevan@cpan.org>
35              
36             =item *
37              
38             Brian Fraser <hugmeir@cpan.org>
39              
40             =back
41              
42             =head1 COPYRIGHT AND LICENSE
43              
44             This software is copyright (c) 2019 by Mickey Nasriachi, Stevan Little, Brian Fraser.
45              
46             This is free software; you can redistribute it and/or modify it under
47             the same terms as the Perl 5 programming language system itself.
48              
49             =cut