File Coverage

blib/lib/Rstats/Element/Double.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Rstats::Element::Double;
2 12     12   63 use Object::Simple -base;
  12         19  
  12         56  
3              
4 12     12   1047 use Carp 'croak';
  12         20  
  12         768  
5             require Rstats::Util;
6              
7             has 'value';
8             has 'flag';
9              
10             1;