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   246307 use utf8;
  25         84  
  25         195  
4              
5 25     25   882 use Moo::Role;
  25         73  
  25         146  
6 25     25   10047 use namespace::autoclean;
  25         76  
  25         329  
7              
8             our $VERSION = '0.025'; # VERSION
9              
10             requires 'get_contents';
11              
12             1;
13              
14             __END__