File Coverage

blib/lib/WWW/Shopify/Liquid/Tag/Output.pm
Criterion Covered Total %
statement 9 10 90.0
branch n/a
condition n/a
subroutine 4 5 80.0
pod 0 4 0.0
total 13 19 68.4


line stmt bran cond sub pod time code
1              
2             package WWW::Shopify::Liquid::Tag::Output;
3 37     37   17636 use base 'WWW::Shopify::Liquid::Tag::Free';
  37         112  
  37         8034  
4              
5 0     0 0 0 sub max_arguments { return 1; }
6 85     85 0 354 sub abstract { return 0; }
7              
8             sub new {
9 323     323 0 1073 my ($package, $line, $arguments) = @_;
10 323         1252 my $self = { arguments => $arguments, line => $line };
11 323         1730 return bless $self, $package;
12             }
13              
14             sub operate {
15 820     820 0 2234 my ($self, $hash, $argument) = @_;
16 820         3176 return $argument;
17             }
18              
19             1;