File Coverage

blib/lib/Shell/EnvImporter/Change.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Shell::EnvImporter::Change;
2              
3 1     1   125 use strict;
  1         2  
  1         36  
4 1     1   76 use warnings;
  1         72  
  1         31  
5 1     1   6 no warnings 'uninitialized';
  1         2  
  1         183  
6              
7             use Class::MethodMaker 2.0 [
8 1         8 new => [qw(-hash new)],
9             scalar => [qw(
10             type
11             value
12             )],
13 1     1   1665 ];
  1         22929  
14              
15 1         80 use constant TYPES => (
16             qw(modified added removed)
17 1     1   19246 );
  1         2  
18              
19              
20             1;