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 25     25   184 use utf8;
  25         63  
  25         169  
4              
5 25     25   831 use Moo;
  25         57  
  25         141  
6 25     25   8196 use Types::Standard qw(ArrayRef);
  25         142  
  25         212  
7 25     25   12753 use namespace::autoclean;
  25         66  
  25         197  
8              
9             with 'Bat::Interpreter::Role::LineLogger';
10              
11             our $VERSION = '0.024'; # VERSION
12              
13             sub log_line {
14 122     122 1 940 my $self = shift();
15 122         274 return 0;
16             }
17              
18             1;
19              
20             __END__