File Coverage

blib/lib/DTL/Fast/Filter/Urlencode.pm
Criterion Covered Total %
statement 20 20 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 0 1 0.0
total 26 27 96.3


line stmt bran cond sub pod time code
1             package DTL::Fast::Filter::Urlencode;
2 3     3   1073 use strict;
  3         5  
  3         69  
3 3     3   11 use utf8;
  3         6  
  3         15  
4 3     3   60 use warnings FATAL => 'all';
  3         5  
  3         96  
5 3     3   13 use parent 'DTL::Fast::Filter';
  3         6  
  3         13  
6              
7             $DTL::Fast::FILTER_HANDLERS{urlencode} = __PACKAGE__;
8              
9 3     3   159 use DTL::Fast::Utils;
  3         6  
  3         205  
10              
11             #@Override
12             sub filter
13             {
14 4     4 0 8 shift; # self
15 4         5 shift; # filter_manager
16 4         8 my $value = shift; # value
17 4         4 shift; #context
18              
19 4         21 return DTL::Fast::Utils::escape($value);
20             }
21              
22             1;