File Coverage

blib/lib/Net/Amazon/S3/Constraint/Etag.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: Moose constraint - Etag format
2             $Net::Amazon::S3::Constraint::Etag::VERSION = '0.991';
3             use Moose::Util::TypeConstraints;
4 99     99   606  
  99         195  
  99         658  
5             type __PACKAGE__, where { $_ =~ /^[a-z0-9]{32}(?:-\d+)?$/ };
6              
7             1;
8              
9              
10             =pod
11              
12             =encoding UTF-8
13              
14             =head1 NAME
15              
16             Net::Amazon::S3::Constraint::Etag - Moose constraint - Etag format
17              
18             =head1 VERSION
19              
20             version 0.991
21              
22             =head1 AUTHOR
23              
24             Branislav ZahradnĂ­k <barney@cpan.org>
25              
26             =head1 COPYRIGHT AND LICENSE
27              
28             This software is copyright (c) 2022 by Amazon Digital Services, Leon Brocard, Brad Fitzpatrick, Pedro Figueiredo, Rusty Conover, Branislav ZahradnĂ­k.
29              
30             This is free software; you can redistribute it and/or modify it under
31             the same terms as the Perl 5 programming language system itself.
32              
33             =cut