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