File Coverage

blib/lib/PONAPI/Client/Request/Retrieve.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             # ABSTRACT: request - retrieve
2             package PONAPI::Client::Request::Retrieve;
3              
4 1     1   204981 use Moose;
  1         335580  
  1         7  
5              
6             with 'PONAPI::Client::Request',
7             'PONAPI::Client::Request::Role::IsGET',
8             'PONAPI::Client::Request::Role::HasType',
9             'PONAPI::Client::Request::Role::HasId',
10             'PONAPI::Client::Request::Role::HasFields',
11             'PONAPI::Client::Request::Role::HasFilter',
12             'PONAPI::Client::Request::Role::HasInclude',
13             'PONAPI::Client::Request::Role::HasPage',
14             'PONAPI::Client::Request::Role::HasUriSingle';
15              
16             __PACKAGE__->meta->make_immutable;
17 1     1   7666 no Moose; 1;
  1         3  
  1         5  
18              
19             __END__
20              
21             =pod
22              
23             =encoding UTF-8
24              
25             =head1 NAME
26              
27             PONAPI::Client::Request::Retrieve - request - retrieve
28              
29             =head1 VERSION
30              
31             version 0.002012
32              
33             =head1 AUTHORS
34              
35             =over 4
36              
37             =item *
38              
39             Mickey Nasriachi <mickey@cpan.org>
40              
41             =item *
42              
43             Stevan Little <stevan@cpan.org>
44              
45             =item *
46              
47             Brian Fraser <hugmeir@cpan.org>
48              
49             =back
50              
51             =head1 COPYRIGHT AND LICENSE
52              
53             This software is copyright (c) 2019 by Mickey Nasriachi, Stevan Little, Brian Fraser.
54              
55             This is free software; you can redistribute it and/or modify it under
56             the same terms as the Perl 5 programming language system itself.
57              
58             =cut