File Coverage

blib/lib/DTL/Fast/Filter/Strftime.pm
Criterion Covered Total %
statement 21 21 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 0 1 0.0
total 27 28 96.4


line stmt bran cond sub pod time code
1             package DTL::Fast::Filter::Strftime;
2 2     2   864 use strict; use utf8; use warnings FATAL => 'all';
  2     2   3  
  2     2   45  
  2         7  
  2         1  
  2         11  
  2         34  
  2         3  
  2         61  
3 2     2   6 use parent 'DTL::Fast::Filter::Date';
  2         3  
  2         8  
4              
5             $DTL::Fast::FILTER_HANDLERS{'strftime'} = __PACKAGE__;
6              
7 2     2   79 use DTL::Fast::Utils;
  2         3  
  2         164  
8              
9             #@Override
10             sub filter
11             {
12 2     2 0 2 my $self = shift; # self
13 2         1 shift; # filter_manager
14 2         7 my $value = shift;
15 2         2 my $context = shift;
16            
17 2         4 my $format = $self->{'format'}->render($context);
18            
19 2         4 return DTL::Fast::Utils::time2str($format, $value);
20             }
21              
22             1;