File Coverage

blib/lib/Module/Install/InlineModule.pm
Criterion Covered Total %
statement 12 19 63.1
branch n/a
condition n/a
subroutine 4 5 80.0
pod 0 1 0.0
total 16 25 64.0


line stmt bran cond sub pod time code
1 1     1   668 use strict; use warnings;
  1     1   2  
  1         28  
  1         4  
  1         1  
  1         46  
2             package Module::Install::InlineModule;
3             our $VERSION = '0.01';
4              
5 1     1   3 use base 'Module::Install::Base';
  1         7  
  1         446  
6 1     1   835 use Inline::Module;
  1         19001  
  1         5  
7              
8             # use XXX;
9              
10             sub inline {
11 0     0 0   my ($self, %args) = @_;
12              
13 0           my $makemaker = {};
14 0           my $postamble = Inline::Module::postamble(
15             $makemaker,
16             inline => \%args,
17             );
18 0           $self->postamble($postamble);
19 0           my $IM = $Inline::Module::Self;
20 0           for my $module ($IM->included_modules) {
21 0           $self->include($module);
22             }
23             }
24              
25             1;