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   7 use strict;
  1         2  
  1         52  
4 1     1   5 use warnings;
  1         13  
  1         79  
5              
6 1     1   725 use Module::Build;
  1         144929  
  1         41  
7             our @ISA = qw{ Module::Build };
8              
9 1     1   6 use Carp;
  1         2  
  1         129  
10              
11             sub ACTION_authortest {
12 0     0 0   my ( $self, @args ) = @_;
13              
14 0           local $ENV{AUTHOR_TESTING} = 1;
15              
16 0           $self->depends_on( 'build' );
17 0           $self->test_files( qw{ t xt/author } );
18 0           $self->depends_on( 'test' );
19              
20 0           return;
21             }
22              
23             1;
24              
25             __END__