File Coverage

blib/lib/Shell/EnvImporter/Shell/sh.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 0 1 0.0
total 24 25 96.0


line stmt bran cond sub pod time code
1             package Shell::EnvImporter::Shell::sh;
2              
3 1     1   7 use strict;
  1         2  
  1         48  
4 1     1   5 use warnings;
  1         2  
  1         45  
5 1     1   6 no warnings 'uninitialized';
  1         1  
  1         43  
6              
7 1     1   5 use base qw(Shell::EnvImporter::Shell);
  1         2  
  1         130  
8              
9             use Class::MethodMaker 2.0 [
10 1         10 new => [qw(-init new)],
11 1     1   5 ];
  1         45  
12              
13             ##########
14             sub init {
15             ##########
16 14     14 0 3393 my $self = shift;
17 14         68 my %args = @_;
18              
19 14         584 $self->SUPER::init(
20             %args,
21             );
22              
23             }
24              
25             1;