File Coverage

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


line stmt bran cond sub pod time code
1             package Text::Pipe::Append;
2              
3 1     1   7 use warnings;
  1         3  
  1         44  
4 1     1   14 use strict;
  1         3  
  1         64  
5              
6              
7             our $VERSION = '0.10';
8              
9              
10 1     1   13 use base 'Text::Pipe::Base';
  1         2  
  1         214  
11              
12              
13             __PACKAGE__->mk_scalar_accessors(qw(text));
14              
15              
16             sub filter_single {
17 4     4 1 12 my ($self, $input) = @_;
18 4 100       16 return $input unless defined $self->text;
19 2         19 $input . $self->text;
20             }
21              
22              
23             1;
24              
25              
26             __END__