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   186 use utf8;
  25         57  
  25         156  
4              
5 25     25   802 use Moo;
  25         65  
  25         184  
6 25     25   7961 use Types::Standard qw(ArrayRef);
  25         72  
  25         168  
7 25     25   11835 use namespace::autoclean;
  25         66  
  25         163  
8              
9             with 'Bat::Interpreter::Role::LineLogger';
10              
11             our $VERSION = '0.025'; # VERSION
12              
13             sub log_line {
14 122     122 1 977 my $self = shift();
15 122         272 return 0;
16             }
17              
18             1;
19              
20             __END__