File Coverage

blib/lib/DTL/Fast/Filter/Lower.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::Lower;
2 2     2   768 use strict;
  2         5  
  2         44  
3 2     2   10 use utf8;
  2         3  
  2         11  
4 2     2   39 use warnings FATAL => 'all';
  2         4  
  2         64  
5 2     2   8 use parent 'DTL::Fast::Filter';
  2         4  
  2         13  
6              
7 2     2   82 use locale;
  2         3  
  2         11  
8              
9             $DTL::Fast::FILTER_HANDLERS{lower} = __PACKAGE__;
10              
11             #@Override
12             sub filter
13             {
14 2     2 0 8 shift; # self
15 2         3 shift; # filter_manager
16              
17 2   50     10 return lc(shift // '');
18             }
19              
20             1;