File Coverage

blib/lib/Shell/EnvImporter/Shell/bash.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::bash;
2              
3 1     1   10 use strict;
  1         2  
  1         71  
4 1     1   6 use warnings;
  1         3  
  1         67  
5 1     1   6 no warnings 'uninitialized';
  1         2  
  1         73  
6              
7 1     1   7 use base qw(Shell::EnvImporter::Shell::sh);
  1         2  
  1         208  
8              
9             use Class::MethodMaker 2.0 [
10 1         24 new => [qw(-init new)],
11 1     1   10 ];
  1         43  
12              
13             ##########
14             sub init {
15             ##########
16 12     12 0 1058 my $self = shift;
17 12         50 my %args = @_;
18              
19 12         299 $self->SUPER::init(
20             name => 'bash',
21             flags => [qw(-norc -noprofile -c)],
22             %args,
23             );
24              
25             }
26              
27             1;