File Coverage

blib/lib/WWW/Shopify/Liquid/Filter/Abs.pm
Criterion Covered Total %
statement 9 10 90.0
branch n/a
condition n/a
subroutine 3 4 75.0
pod 0 1 0.0
total 12 15 80.0


line stmt bran cond sub pod time code
1             #!/usr/bin/perl
2 37     37   14299 use strict;
  37         111  
  37         1107  
3 37     37   254 use warnings;
  37         100  
  37         1421  
4              
5             package WWW::Shopify::Liquid::Filter::Abs;
6 37     37   242 use base 'WWW::Shopify::Liquid::Filter';
  37         97  
  37         4387  
7              
8 0     0 0   sub operate { return abs($_[2]); }
9              
10             1;