File Coverage

blib/lib/WWW/Shopify/Liquid/Dialect/Shopify/Filter/ThemeUrl.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 1     1   286 use strict;
  1         2  
  1         22  
3 1     1   4 use warnings;
  1         2  
  1         28  
4              
5 1     1   4 package WWW::Shopify::Liquid::Dialect::Shopify::Filter::ThemeUrl; use base 'WWW::Shopify::Liquid::Filter';
  1         2  
  1         112  
6 0     0 0   sub operate { return "<a href='" . $_[1]->{page}->{url} . "?theme=" . uri_escape($_[4]) . ">" . $_[3] . "</a>"; }
7              
8             1;