File Coverage

blib/lib/App/Table2YAML/Loader/LaTeX.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::LaTeX;
2              
3 1     1   1933 use common::sense;
  1         2  
  1         96  
4 1     1   416 use charnames q(:full);
  1         3  
  1         9  
5 1     1   384 use English qw[-no_match_vars];
  1         2  
  1         9  
6 1     1   1711 use Moo::Role;
  1         2  
  1         9  
7              
8             our $VERSION = '0.002'; # VERSION
9              
10 2     2 1 16 sub load_latex {...}
11              
12 1     1   1011 no Moo;
  1         3  
  1         8  
13             __PACKAGE__->meta->make_immutable;
14              
15             1;
16              
17             __END__