File Coverage

blib/lib/WWW/Shopify/Liquid/Filter/CustomerLoginLink.pm
Criterion Covered Total %
statement 9 11 81.8
branch n/a
condition n/a
subroutine 3 5 60.0
pod 0 2 0.0
total 12 18 66.6


line stmt bran cond sub pod time code
1             #!/usr/bin/perl
2 21     21   10068 use strict;
  21         34  
  21         746  
3 21     21   94 use warnings;
  21         32  
  21         712  
4              
5 21     21   89 package WWW::Shopify::Liquid::Filter::CustomerLoginLink; use base 'WWW::Shopify::Liquid::Filter';
  21         32  
  21         2244  
6 0     0 0   sub max_arguments { return 0; }
7 0     0 0   sub operate { return '' . $_[2] . ''; }
8              
9             1;