File Coverage

blib/lib/WWW/Shopify/Liquid/Operator/With.pm
Criterion Covered Total %
statement 11 12 91.6
branch n/a
condition n/a
subroutine 5 6 83.3
pod 0 3 0.0
total 16 21 76.1


line stmt bran cond sub pod time code
1             #!/usr/bin/perl
2 21     21   13233 use strict;
  21         45  
  21         785  
3 21     21   111 use warnings;
  21         32  
  21         891  
4              
5             package WWW::Shopify::Liquid::Operator::With;
6 21     21   107 use base 'WWW::Shopify::Liquid::Operator';
  21         31  
  21         2891  
7 293     293 0 798 sub symbol { return ('with'); }
8 1633     1633 0 3201 sub priority { return 11; }
9 0     0 0   sub operate { return undef; }
10              
11             1;