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 21     21   10810 use strict;
  21         37  
  21         752  
3 21     21   101 use warnings;
  21         31  
  21         729  
4              
5             package WWW::Shopify::Liquid::Operator::In;
6 21     21   134 use base 'WWW::Shopify::Liquid::Operator';
  21         33  
  21         2636  
7 293     293 0 727 sub symbol { return 'in'; }
8 23     23 0 72 sub priority { return 11; }
9              
10             1;