File Coverage

blib/lib/Data/Localize/Storage.pm
Criterion Covered Total %
statement 3 4 75.0
branch n/a
condition n/a
subroutine 1 2 50.0
pod 1 1 100.0
total 5 7 71.4


line stmt bran cond sub pod time code
1             package Data::Localize::Storage;
2 2     2   8585 use Moo::Role;
  2         3  
  2         12  
3              
4             has 'lang' => (
5             is => 'ro',
6             required => 1
7             );
8              
9             requires qw(get set);
10              
11 0     0 1   sub is_volatile { 1 }
12              
13             1;
14              
15             __END__