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 21     21   10496 use strict;
  21         41  
  21         722  
3 21     21   97 use warnings;
  21         34  
  21         711  
4              
5             package WWW::Shopify::Liquid::Tag::Raw;
6 21     21   92 use base 'WWW::Shopify::Liquid::Tag::Enclosing';
  21         38  
  21         2758  
7 23     23 0 196 sub inner_halt_lexing { return 1; }
8             sub process {
9 0     0 0   my ($self, $hash) = @_;
10 0           my $result = $self->{contents}->process($hash);
11 0           return $result;
12             }
13              
14              
15              
16             1;