File Coverage

blib/lib/DTL/Fast/Expression/Operator/Unary/Logical.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::Unary::Logical;
2 5     5   4225 use strict; use utf8; use warnings FATAL => 'all';
  5     5   11  
  5     5   146  
  5         24  
  5         9  
  5         27  
  5         119  
  5         8  
  5         164  
3 5     5   23 use parent 'DTL::Fast::Expression::Operator::Unary';
  5         9  
  5         27  
4              
5 5     5   376 use DTL::Fast::Utils qw(as_bool);
  5         9  
  5         596  
6              
7             sub render
8             {
9 922     922 0 1228 my( $self, $context ) = @_;
10            
11             return $self->dispatch(
12 922         2835 as_bool($self->{'a'}->render($context, 1))
13             , $context
14             );
15             }
16              
17             1;