File Coverage

blib/lib/DTL/Fast/Filter/Upper.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition 1 2 50.0
subroutine 6 6 100.0
pod 0 1 0.0
total 25 27 92.5


line stmt bran cond sub pod time code
1             package DTL::Fast::Filter::Upper;
2 3     3   1970 use strict; use utf8; use warnings FATAL => 'all';
  3     3   6  
  3     3   73  
  3         15  
  3         7  
  3         20  
  3         71  
  3         6  
  3         111  
3 3     3   14 use parent 'DTL::Fast::Filter';
  3         6  
  3         20  
4              
5 3     3   798 use locale;
  3         575  
  3         18  
6              
7             $DTL::Fast::FILTER_HANDLERS{'upper'} = __PACKAGE__;
8              
9             #@Override
10             sub filter
11             {
12 4     4 0 5 shift; # self
13 4         5 shift; # filter_manager
14 4   50     27 return uc(shift // '');
15             }
16              
17             1;