File Coverage

blib/lib/Net/Amazon/S3/Request/Role/Query/Param/Delimiter.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::Delimiter;
2             # ABSTRACT: delimiter query param role
3             $Net::Amazon::S3::Request::Role::Query::Param::Delimiter::VERSION = '0.99';
4 99     99   70558 use Moose::Role;
  99         322  
  99         915  
5              
6             with 'Net::Amazon::S3::Request::Role::Query::Param' => {
7             param => 'delimiter',
8             constraint => 'Maybe[Str]',
9             required => 0,
10             };
11              
12             1;
13              
14             __END__
15              
16             =pod
17              
18             =encoding UTF-8
19              
20             =head1 NAME
21              
22             Net::Amazon::S3::Request::Role::Query::Param::Delimiter - delimiter query param role
23              
24             =head1 VERSION
25              
26             version 0.99
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) 2021 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