File Coverage

blib/lib/Data/CompactReadonly/V0/Scalar/True.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 14 14 100.0


line stmt bran cond sub pod time code
1             package Data::CompactReadonly::V0::Scalar::True;
2             our $VERSION = '0.1.0';
3              
4 1     1   7 use warnings;
  1         18  
  1         38  
5 1     1   6 use strict;
  1         2  
  1         21  
6 1     1   5 use base 'Data::CompactReadonly::V0::Scalar::HeaderOnly';
  1         2  
  1         124  
7              
8 1     1   6 sub _init { return 1 == 1; }
9              
10             1;