File Coverage

blib/lib/DTL/Fast/Filter/Ljust.pm
Criterion Covered Total %
statement 16 16 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 1 0.0
total 21 22 95.4


line stmt bran cond sub pod time code
1             package DTL::Fast::Filter::Ljust;
2 2     2   765 use strict;
  2         4  
  2         45  
3 2     2   9 use utf8;
  2         3  
  2         11  
4 2     2   39 use warnings FATAL => 'all';
  2         4  
  2         56  
5 2     2   9 use parent 'DTL::Fast::Filter::Center';
  2         4  
  2         10  
6              
7             $DTL::Fast::FILTER_HANDLERS{ljust} = __PACKAGE__;
8              
9             #@Override
10             sub adjust
11             {
12 2     2 0 4 my $self = shift;
13 2         2 my $value = shift;
14 2         4 my $adjustment = shift;
15 2         8 return $value.(' 'x $adjustment);
16             }
17              
18             1;