File Coverage

blib/lib/Text/Pipe/Chop.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 17 17 100.0


line stmt bran cond sub pod time code
1             package Text::Pipe::Chop;
2              
3 1     1   7 use warnings;
  1         2  
  1         33  
4 1     1   5 use strict;
  1         3  
  1         47  
5              
6              
7             our $VERSION = '0.10';
8              
9              
10 1     1   6 use base 'Text::Pipe::Base';
  1         2  
  1         153  
11              
12              
13             sub filter_single {
14 4     4 1 8 my ($self, $input) = @_;
15 4         9 chop $input;
16 4         24 $input;
17             }
18              
19              
20             1;
21              
22              
23             __END__