File Coverage

blib/lib/WWW/Shopify/Liquid/Operator/In.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 2 0.0
total 16 18 88.8


line stmt bran cond sub pod time code
1             #!/usr/bin/perl
2 37     37   17959 use strict;
  37         125  
  37         1264  
3 37     37   267 use warnings;
  37         105  
  37         2084  
4              
5             package WWW::Shopify::Liquid::Operator::In;
6 37     37   306 use base 'WWW::Shopify::Liquid::Operator';
  37         108  
  37         6333  
7 1321     1321 0 4190 sub symbol { return 'in'; }
8 85     85 0 339 sub priority { return 11; }
9              
10             1;