File Coverage

blib/lib/Module/Install/Run.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 Module::Install::Run;
2              
3 1     1   837 use strict;
  1         1  
  1         23  
4 1     1   3 use Module::Install::Base ();
  1         1  
  1         15  
5              
6 1     1   3 use vars qw{$VERSION @ISA $ISCORE};
  1         1  
  1         58  
7             BEGIN {
8 1     1   1 $VERSION = '1.18';
9 1         7 @ISA = 'Module::Install::Base';
10 1         16 $ISCORE = 1;
11             }
12              
13             # eventually move the ipc::run / open3 stuff here.
14              
15             1;