File Coverage

blib/lib/WWW/Shopify/Liquid/Operator/In.pm
Criterion Covered Total %
statement 9 11 81.8
branch n/a
condition n/a
subroutine 3 5 60.0
pod 0 2 0.0
total 12 18 66.6


line stmt bran cond sub pod time code
1             #!/usr/bin/perl
2 30     30   16678 use strict;
  30         57  
  30         899  
3 30     30   123 use warnings;
  30         53  
  30         1134  
4              
5             package WWW::Shopify::Liquid::Operator::In;
6 30     30   128 use base 'WWW::Shopify::Liquid::Operator';
  30         44  
  30         3125  
7 0     0 0   sub symbol { return 'in'; }
8 0     0 0   sub priority { return 11; }
9              
10             1;