File Coverage

blib/lib/Text/Pipe/LowercaseFirst.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 16 16 100.0


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