File Coverage

blib/lib/Bat/Interpreter/Delegate/LineLogger/Silent.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Bat::Interpreter::Delegate::LineLogger::Silent;
2              
3 23     23   154 use utf8;
  23         46  
  23         126  
4              
5 23     23   671 use Moo;
  23         84  
  23         122  
6 23     23   6892 use Types::Standard qw(ArrayRef);
  23         108  
  23         219  
7 23     23   11298 use namespace::autoclean;
  23         61  
  23         168  
8              
9             with 'Bat::Interpreter::Role::LineLogger';
10              
11             our $VERSION = '0.023'; # VERSION
12              
13             sub log_line {
14 113     113 1 758 my $self = shift();
15 113         217 return 0;
16             }
17              
18             1;
19              
20             __END__