File Coverage

blib/lib/WWW/Shopify/Liquid/Filter/Prepend.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   14234 use strict;
  37         188  
  37         1258  
3 37     37   246 use warnings;
  37         92  
  37         1414  
4              
5 37     37   243 package WWW::Shopify::Liquid::Filter::Prepend; use base 'WWW::Shopify::Liquid::Filter';
  37         95  
  37         4460  
6 0     0 0   sub operate { return $_[3] . $_[2]; }
7              
8             1;