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 | 742 | use strict; use utf8; use warnings FATAL => 'all'; | |||
2 | 2 | 2 | |||||
2 | 2 | 42 | |||||
2 | 5 | ||||||
2 | 3 | ||||||
2 | 9 | ||||||
2 | 34 | ||||||
2 | 2 | ||||||
2 | 57 | ||||||
3 | 2 | 2 | 4 | use parent 'DTL::Fast::Filter'; | |||
2 | 2 | ||||||
2 | 10 | ||||||
4 | |||||||
5 | 2 | 2 | 68 | use locale; | |||
2 | 1 | ||||||
2 | 13 | ||||||
6 | |||||||
7 | $DTL::Fast::FILTER_HANDLERS{'lower'} = __PACKAGE__; | ||||||
8 | |||||||
9 | #@Override | ||||||
10 | sub filter | ||||||
11 | { | ||||||
12 | 2 | 2 | 0 | 2 | shift; # self | ||
13 | 2 | 1 | shift; # filter_manager | ||||
14 | |||||||
15 | 2 | 50 | 7 | return lc(shift // ''); | |||
16 | } | ||||||
17 | |||||||
18 | 1; |