File Coverage

blib/lib/WWW/Shopify/Liquid/Filter/Append.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   14133 use strict;
  37         107  
  37         1111  
3 37     37   230 use warnings;
  37         98  
  37         1409  
4              
5 37     37   244 package WWW::Shopify::Liquid::Filter::Append; use base 'WWW::Shopify::Liquid::Filter';
  37         102  
  37         4610  
6 0     0 0   sub operate { return $_[2] . $_[3]; }
7              
8             1;