File Coverage

blib/lib/WWW/Shopify/Liquid/Tag/Raw.pm
Criterion Covered Total %
statement 10 13 76.9
branch n/a
condition n/a
subroutine 4 5 80.0
pod 0 2 0.0
total 14 20 70.0


line stmt bran cond sub pod time code
1             #!/usr/bin/perl
2 37     37   15783 use strict;
  37         108  
  37         1144  
3 37     37   250 use warnings;
  37         104  
  37         1470  
4              
5             package WWW::Shopify::Liquid::Tag::Raw;
6 37     37   243 use base 'WWW::Shopify::Liquid::Tag::Enclosing';
  37         110  
  37         6416  
7 85     85 0 743 sub inner_halt_lexing { return 1; }
8             sub process {
9 0     0 0   my ($self, $hash, $action, $pipeline) = @_;
10 0           my $result = $self->{contents}->$action($pipeline, $hash);
11 0           return $result;
12             }
13              
14              
15              
16             1;