File Coverage

blib/lib/DTL/Fast/Expression/Operator/Binary/NotIn.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 1 0.0
total 19 20 95.0


line stmt bran cond sub pod time code
1             package DTL::Fast::Expression::Operator::Binary::NotIn;
2 2     2   846 use strict;
  2         4  
  2         48  
3 2     2   10 use utf8;
  2         4  
  2         10  
4 2     2   40 use warnings FATAL => 'all';
  2         3  
  2         54  
5 2     2   8 use parent 'DTL::Fast::Expression::Operator::Binary::In';
  2         4  
  2         9  
6              
7             $DTL::Fast::OPS_HANDLERS{'not in'} = __PACKAGE__;
8              
9             sub render
10             {
11 6     6 0 14 my $self = shift;
12 6         21 return !$self->SUPER::render(@_);
13             }
14              
15             1;