File Coverage

blib/lib/PONAPI/Client/Request/Role/HasType.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 type
2             package PONAPI::Client::Request::Role::HasType;
3              
4 7     7   3820 use Moose::Role;
  7         18  
  7         48  
5              
6             has type => (
7             is => 'ro',
8             isa => 'Str',
9             required => 1,
10             );
11              
12 7     7   35758 no Moose::Role; 1;
  7         20  
  7         33  
13              
14             __END__
15              
16             =pod
17              
18             =encoding UTF-8
19              
20             =head1 NAME
21              
22             PONAPI::Client::Request::Role::HasType - request - role - has type
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