File Coverage

blib/lib/WWW/Shopify/Liquid/Dialect/Web/Filter/UrlEscapeParam.pm
Criterion Covered Total %
statement 12 16 75.0
branch 0 2 0.0
condition n/a
subroutine 4 6 66.6
pod 0 2 0.0
total 16 26 61.5


line stmt bran cond sub pod time code
1             #!/usr/bin/perl
2 1     1   466 use strict;
  1         3  
  1         32  
3 1     1   8 use warnings;
  1         3  
  1         48  
4              
5             package WWW::Shopify::Liquid::Dialect::Web::Filter::UrlEscapeParam;
6 1     1   7 use base 'WWW::Shopify::Liquid::Filter';
  1         4  
  1         145  
7 0     0 0   sub max_arguments { return 0; }
8 1     1   9 use URI::Escape qw(uri_escape uri_escape_utf8);
  1         2  
  1         121  
9              
10             sub operate {
11 0     0 0   my ($self, $hash, $operand, @arguments) = @_;
12 0 0         return undef unless defined $operand;
13 0           return uri_escape_utf8($operand);
14             }
15              
16             1;