File Coverage

blib/lib/WWW/Shopify/Liquid/Operator/With.pm
Criterion Covered Total %
statement 11 13 84.6
branch n/a
condition n/a
subroutine 5 7 71.4
pod 0 4 0.0
total 16 24 66.6


line stmt bran cond sub pod time code
1             #!/usr/bin/perl
2 37     37   15250 use strict;
  37         1791  
  37         1312  
3 37     37   254 use warnings;
  37         94  
  37         1481  
4              
5             package WWW::Shopify::Liquid::Operator::With;
6 37     37   259 use base 'WWW::Shopify::Liquid::Operator';
  37         105  
  37         6130  
7 1321     1321 0 3803 sub symbol { return ('with'); }
8 85     85 0 316 sub priority { return 11; }
9 0     0 0   sub optimize { return $_[0]; }
10 0     0 0   sub render { return $_[0]; }
11              
12             1;