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