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   1233 use strict; use utf8; use warnings FATAL => 'all';
  2     2   3  
  2     2   46  
  2         11  
  2         4  
  2         10  
  2         48  
  2         3  
  2         70  
3 2     2   10 use parent 'DTL::Fast::Filter::Date';
  2         5  
  2         11  
4              
5             $DTL::Fast::FILTER_HANDLERS{'strftime'} = __PACKAGE__;
6              
7 2     2   101 use DTL::Fast::Utils;
  2         3  
  2         202  
8              
9             #@Override
10             sub filter
11             {
12 2     2 0 3 my $self = shift; # self
13 2         2 shift; # filter_manager
14 2         3 my $value = shift;
15 2         4 my $context = shift;
16            
17 2         12 my $format = $self->{'format'}->render($context);
18            
19 2         6 return DTL::Fast::Utils::time2str($format, $value);
20             }
21              
22             1;