File Coverage

blib/lib/Data/Tabular/Type/Formula.pm
Criterion Covered Total %
statement 6 8 75.0
branch n/a
condition n/a
subroutine 2 3 66.6
pod 0 1 0.0
total 8 12 66.6


line stmt bran cond sub pod time code
1 3     3   17 use strict;
  3         7  
  3         162  
2              
3             package
4             Data::Tabular::Type::Formula;
5              
6 3     3   18 use base 'Data::Tabular::Type';
  3         7  
  3         431  
7              
8             sub data
9             {
10 0     0 0   my $self = shift;
11              
12 0           $self->{data};
13             }
14              
15             1;