File Coverage

blib/lib/Bat/Interpreter/Role/FileStore.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Bat::Interpreter::Role::FileStore;
2              
3 23     23   217566 use utf8;
  23         61  
  23         174  
4              
5 23     23   847 use Moo::Role;
  23         53  
  23         145  
6 23     23   9139 use namespace::autoclean;
  23         116  
  23         300  
7              
8             our $VERSION = '0.023'; # VERSION
9              
10             requires 'get_contents';
11              
12             1;
13              
14             __END__