File Coverage

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