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   1257 use strict; use utf8; use warnings FATAL => 'all';
  4     4   5  
  4     4   110  
  4         15  
  4         5  
  4         21  
  4         89  
  4         5  
  4         157  
3 4     4   17 use parent 'DTL::Fast::Expression::Operator::Binary::Eq';
  4         5  
  4         19  
4              
5             $DTL::Fast::OPS_HANDLERS{'!='} = __PACKAGE__;
6             $DTL::Fast::OPS_HANDLERS{'<>'} = __PACKAGE__;
7              
8 4     4   378 use Scalar::Util qw(looks_like_number);
  4         4  
  4         342  
9              
10             sub render
11             {
12 60     60 0 52 my $self = shift;
13 60         134 return !$self->SUPER::render(@_);
14             }
15              
16             1;