File Coverage

blib/lib/PONAPI/Client/Request/RetrieveRelationships.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 relationships
2             package PONAPI::Client::Request::RetrieveRelationships;
3              
4 1     1   208639 use Moose;
  1         342527  
  1         9  
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::HasRelationshipType',
11             'PONAPI::Client::Request::Role::HasFilter',
12             'PONAPI::Client::Request::Role::HasPage',
13             'PONAPI::Client::Request::Role::HasUriRelationships';
14              
15             __PACKAGE__->meta->make_immutable;
16 1     1   7577 no Moose; 1;
  1         2  
  1         5  
17              
18             __END__
19              
20             =pod
21              
22             =encoding UTF-8
23              
24             =head1 NAME
25              
26             PONAPI::Client::Request::RetrieveRelationships - request - retrieve relationships
27              
28             =head1 VERSION
29              
30             version 0.002012
31              
32             =head1 AUTHORS
33              
34             =over 4
35              
36             =item *
37              
38             Mickey Nasriachi <mickey@cpan.org>
39              
40             =item *
41              
42             Stevan Little <stevan@cpan.org>
43              
44             =item *
45              
46             Brian Fraser <hugmeir@cpan.org>
47              
48             =back
49              
50             =head1 COPYRIGHT AND LICENSE
51              
52             This software is copyright (c) 2019 by Mickey Nasriachi, Stevan Little, Brian Fraser.
53              
54             This is free software; you can redistribute it and/or modify it under
55             the same terms as the Perl 5 programming language system itself.
56              
57             =cut