File Coverage

blib/lib/Net/Amazon/S3/Request/Role/Query/Param/Max_keys.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             # ABSTRACT: max-keys query param role
2             $Net::Amazon::S3::Request::Role::Query::Param::Max_keys::VERSION = '0.991';
3             use Moose::Role;
4 99     99   54230  
  99         235  
  99         663  
5             with 'Net::Amazon::S3::Request::Role::Query::Param' => {
6             param => 'max_keys',
7             query_param => 'max-keys',
8             constraint => 'Maybe[Str]',
9             required => 0,
10             default => 1000,
11             };
12              
13             1;
14              
15              
16             =pod
17              
18             =encoding UTF-8
19              
20             =head1 NAME
21              
22             Net::Amazon::S3::Request::Role::Query::Param::Max_keys - max-keys query param role
23              
24             =head1 VERSION
25              
26             version 0.991
27              
28             =head1 AUTHOR
29              
30             Branislav Zahradník <barney@cpan.org>
31              
32             =head1 COPYRIGHT AND LICENSE
33              
34             This software is copyright (c) 2022 by Amazon Digital Services, Leon Brocard, Brad Fitzpatrick, Pedro Figueiredo, Rusty Conover, Branislav Zahradník.
35              
36             This is free software; you can redistribute it and/or modify it under
37             the same terms as the Perl 5 programming language system itself.
38              
39             =cut