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         38  
4 1     1   3 use warnings;
  1         9  
  1         75  
5              
6 1     1   658 use Module::Build;
  1         74354  
  1         78  
7             our @ISA = qw{ Module::Build };
8              
9             our $VERSION = '0.091_01';
10              
11 1     1   10 use Carp;
  1         2  
  1         186  
12              
13             sub ACTION_authortest {
14 0     0 0   my ( $self ) = @_; # @args unused
15              
16 0           local $ENV{AUTHOR_TESTING} = 1;
17              
18 0           $self->depends_on( 'build' );
19 0           $self->test_files( qw{ t xt/author } );
20 0           $self->depends_on( 'test' );
21              
22 0           return;
23             }
24              
25             1;
26              
27             __END__