File Coverage

blib/lib/ShipIt/Step/DistTestExtra.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package ShipIt::Step::DistTestExtra;
2 1     1   565 use 5.006;
  1         3  
  1         35  
3 1     1   4 use strict;
  1         1  
  1         26  
4 1     1   4 use warnings;
  1         10  
  1         36  
5             our $VERSION = '0.01';
6 1     1   5 use base 'ShipIt::Step::DistTest';
  1         1  
  1         1843  
7              
8             sub run {
9             my $self = shift;
10             $ENV{AUTHOR_TESTING} = 1;
11             $self->SUPER::run(@_);
12             }
13             1;
14             __END__