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 25     25   252798 use utf8;
  25         79  
  25         195  
4              
5 25     25   894 use Moo::Role;
  25         70  
  25         153  
6 25     25   10331 use namespace::autoclean;
  25         138  
  25         368  
7              
8             our $VERSION = '0.024'; # VERSION
9              
10             requires 'get_contents';
11              
12             1;
13              
14             __END__