File Coverage

blib/lib/Net/Amazon/S3/Request/Role/Query/Action.pm
Criterion Covered Total %
statement 4 4 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 11 11 100.0


line stmt bran cond sub pod time code
1             # ABSTRACT: query action role
2             $Net::Amazon::S3::Request::Role::Query::Action::VERSION = '0.991';
3             use MooseX::Role::Parameterized;
4 99     99   88557  
  99         4846518  
  99         450  
5             parameter action => (
6             is => 'ro',
7             isa => 'Str',
8             );
9              
10             role {
11             my ($params) = @_;
12             my $action = $params->action;
13              
14             method '_request_query_action' => sub { $action };
15 368     368   1100 };
        368      
        368      
        368      
        368      
        368      
16              
17             1;
18              
19              
20             =pod
21              
22             =encoding UTF-8
23              
24             =head1 NAME
25              
26             Net::Amazon::S3::Request::Role::Query::Action - query action role
27              
28             =head1 VERSION
29              
30             version 0.991
31              
32             =head1 AUTHOR
33              
34             Branislav Zahradník <barney@cpan.org>
35              
36             =head1 COPYRIGHT AND LICENSE
37              
38             This software is copyright (c) 2022 by Amazon Digital Services, Leon Brocard, Brad Fitzpatrick, Pedro Figueiredo, Rusty Conover, Branislav Zahradník.
39              
40             This is free software; you can redistribute it and/or modify it under
41             the same terms as the Perl 5 programming language system itself.
42              
43             =cut