File Coverage

blib/lib/WWW/Shopify/Liquid/Operator/By.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 37     37   14638 use strict;
  37         103  
  37         1112  
3 37     37   218 use warnings;
  37         105  
  37         1429  
4              
5             package WWW::Shopify::Liquid::Operator::By;
6 37     37   228 use base 'WWW::Shopify::Liquid::Operator';
  37         91  
  37         5397  
7 1321     1321 0 4215 sub symbol { return ('by'); }
8 10030     10030 0 25416 sub priority { return 11; }
9 0     0 0   sub operate { return [$_[3], $_[4]]; }
10              
11             1;