File Coverage

blib/lib/Pask/Config.pm
Criterion Covered Total %
statement 4 6 66.6
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 6 8 75.0


line stmt bran cond sub pod time code
1 1     1   587 use Config::General;
  1         22089  
  1         70  
2 1     1   348 use Config::INI::Reader;
  0            
  0            
3              
4             package Pask::Config;
5              
6             sub parse_env_file {
7             Config::INI::Reader->read_file(shift);
8             }
9              
10             1;