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   1111 use strict;
  1         3  
  1         29  
4 1     1   5 use Module::Install::Base ();
  1         2  
  1         30  
5              
6 1     1   6 use vars qw{$VERSION @ISA $ISCORE};
  1         2  
  1         60  
7             BEGIN {
8 1     1   3 $VERSION = '1.19';
9 1         22 @ISA = 'Module::Install::Base';
10 1         25 $ISCORE = 1;
11             }
12              
13             # eventually move the ipc::run / open3 stuff here.
14              
15             1;