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