File Coverage

inc/My/Module/Build.pm
Criterion Covered Total %
statement 12 18 66.6
branch n/a
condition n/a
subroutine 4 5 80.0
pod 0 1 0.0
total 16 24 66.6


line stmt bran cond sub pod time code
1             package My::Module::Build;
2              
3 1     1   5 use strict;
  1         8  
  1         38  
4 1     1   3 use warnings;
  1         6  
  1         55  
5              
6 1     1   3709 use Module::Build;
  1         83483  
  1         52  
7             our @ISA = qw{ Module::Build };
8              
9 1     1   10 use Carp;
  1         1  
  1         227  
10              
11             sub ACTION_authortest {
12             ## my ( $self, @args ) = @_;
13 0     0 0   my ( $self ) = @_; # Arguments unused
14              
15 0           local $ENV{AUTHOR_TESTING} = 1;
16              
17 0           $self->depends_on( 'build' );
18 0           $self->test_files( qw{ t xt/author } );
19 0           $self->depends_on( 'test' );
20              
21 0           return;
22             }
23              
24             1;
25              
26             __END__