File Coverage

blib/lib/Text/Pipe/Uppercase.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::Uppercase;
2              
3 5     5   40 use warnings;
  5         10  
  5         218  
4 5     5   44 use strict;
  5         10  
  5         568  
5              
6              
7             our $VERSION = '0.10';
8              
9              
10 5     5   33 use base 'Text::Pipe::Base';
  5         9  
  5         801  
11              
12              
13             sub filter_single {
14 14     14 1 26 my ($self, $input) = @_;
15 14         81 uc $input;
16             }
17              
18              
19             1;
20              
21              
22             __END__