File Coverage

blib/lib/WWW/Shopify/Liquid/Operator/With.pm
Criterion Covered Total %
statement 9 12 75.0
branch n/a
condition n/a
subroutine 3 6 50.0
pod 0 3 0.0
total 12 21 57.1


line stmt bran cond sub pod time code
1             #!/usr/bin/perl
2 30     30   17893 use strict;
  30         63  
  30         967  
3 30     30   148 use warnings;
  30         44  
  30         1280  
4              
5             package WWW::Shopify::Liquid::Operator::With;
6 30     30   146 use base 'WWW::Shopify::Liquid::Operator';
  30         48  
  30         3986  
7 0     0 0   sub symbol { return ('with'); }
8 0     0 0   sub priority { return 11; }
9 0     0 0   sub operate { return undef; }
10              
11             1;