File Coverage

blib/lib/DTL/Fast/Expression/Operator/Binary/Ne.pm
Criterion Covered Total %
statement 17 17 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 0 1 0.0
total 23 24 95.8


line stmt bran cond sub pod time code
1             package DTL::Fast::Expression::Operator::Binary::Ne;
2 4     4   2003 use strict; use utf8; use warnings FATAL => 'all';
  4     4   7  
  4     4   110  
  4         20  
  4         7  
  4         26  
  4         103  
  4         10  
  4         181  
3 4     4   20 use parent 'DTL::Fast::Expression::Operator::Binary::Eq';
  4         8  
  4         24  
4              
5             $DTL::Fast::OPS_HANDLERS{'!='} = __PACKAGE__;
6             $DTL::Fast::OPS_HANDLERS{'<>'} = __PACKAGE__;
7              
8 4     4   347 use Scalar::Util qw(looks_like_number);
  4         9  
  4         471  
9              
10             sub render
11             {
12 60     60 0 79 my $self = shift;
13 60         201 return !$self->SUPER::render(@_);
14             }
15              
16             1;