File Coverage

blib/lib/PONAPI/Client/Request/RetrieveAll.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 all
2             package PONAPI::Client::Request::RetrieveAll;
3              
4 1     1   210619 use Moose;
  1         343637  
  1         8  
5              
6             with 'PONAPI::Client::Request',
7             'PONAPI::Client::Request::Role::IsGET',
8             'PONAPI::Client::Request::Role::HasType',
9             'PONAPI::Client::Request::Role::HasFields',
10             'PONAPI::Client::Request::Role::HasFilter',
11             'PONAPI::Client::Request::Role::HasInclude',
12             'PONAPI::Client::Request::Role::HasPage',
13             'PONAPI::Client::Request::Role::HasSort',
14             'PONAPI::Client::Request::Role::HasUriAll';
15              
16             __PACKAGE__->meta->make_immutable;
17 1     1   7814 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::RetrieveAll - request - retrieve all
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