File Coverage

blib/lib/Net/Amazon/S3/Request/Role/Query/Param/Part_number.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Net::Amazon::S3::Request::Role::Query::Param::Part_number;
2             # ABSTRACT: partNumber query param role
3             $Net::Amazon::S3::Request::Role::Query::Param::Part_number::VERSION = '0.98';
4 96     96   74990 use Moose::Role;
  96         297  
  96         1032  
5              
6             with 'Net::Amazon::S3::Request::Role::Query::Param' => {
7             param => 'part_number',
8             query_param => 'partNumber',
9             constraint => 'Int',
10             required => 1,
11             };
12              
13             1;
14              
15             __END__
16              
17             =pod
18              
19             =encoding UTF-8
20              
21             =head1 NAME
22              
23             Net::Amazon::S3::Request::Role::Query::Param::Part_number - partNumber query param role
24              
25             =head1 VERSION
26              
27             version 0.98
28              
29             =head1 AUTHOR
30              
31             Branislav ZahradnĂ­k <barney@cpan.org>
32              
33             =head1 COPYRIGHT AND LICENSE
34              
35             This software is copyright (c) 2021 by Amazon Digital Services, Leon Brocard, Brad Fitzpatrick, Pedro Figueiredo, Rusty Conover, Branislav ZahradnĂ­k.
36              
37             This is free software; you can redistribute it and/or modify it under
38             the same terms as the Perl 5 programming language system itself.
39              
40             =cut