File Coverage

blib/lib/AWS/S3/Request/ListAllMyBuckets.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package AWS::S3::Request::ListAllMyBuckets;
3              
4 1     1   1384 use Moose;
  1         3  
  1         27  
5 1     1   12140 use AWS::S3::Signer;
  1         3  
  1         122  
6              
7             with 'AWS::S3::Roles::BucketAction';
8              
9             has '+_action' => ( default => 'GET' );
10             has '+_expect_nothing' => ( default => 0 );
11              
12             __PACKAGE__->meta->make_immutable;