File Coverage

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