File Coverage

blib/lib/App/Table2YAML/Loader/AsciiTable.pm
Criterion Covered Total %
statement 16 16 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 1 1 100.0
total 23 23 100.0


line stmt bran cond sub pod time code
1             package App::Table2YAML::Loader::AsciiTable;
2              
3 1     1   13335 use common::sense;
  1         3  
  1         10  
4 1     1   52 use charnames q(:full);
  1         2  
  1         8  
5 1     1   426 use English qw[-no_match_vars];
  1         2  
  1         9  
6 1     1   511 use Moo::Role;
  1         2  
  1         8  
7              
8             our $VERSION = '0.002'; # VERSION
9              
10 2     2 1 19 sub load_asciitable {...}
11              
12 1     1   447 no Moo;
  1         3  
  1         38  
13             __PACKAGE__->meta->make_immutable;
14              
15             1;
16              
17             __END__