File Coverage

blib/lib/AWS/S3/Request/DeleteBucket.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::DeleteBucket;
3              
4 1     1   1128 use Moose;
  1         4  
  1         11  
5 1     1   10062 use AWS::S3::ResponseParser;
  1         3  
  1         159  
6              
7             with 'AWS::S3::Roles::BucketAction';
8              
9             has '+_action' => ( default => 'DELETE' );
10             has 'bucket' => ( is => 'ro', isa => 'Str', required => 1 );
11              
12             has '+_expect_nothing' => ( default => 1 );
13              
14             __PACKAGE__->meta->make_immutable;