File Coverage

blib/lib/WWW/Shopify/Liquid/Filter/AssetUrl.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   10509 use strict;
  21         40  
  21         767  
3 21     21   107 use warnings;
  21         38  
  21         775  
4              
5 21     21   96 package WWW::Shopify::Liquid::Filter::AssetUrl; use base 'WWW::Shopify::Liquid::Filter';
  21         36  
  21         2385  
6 0     0 0   sub max_arguments { return 0; }
7 0     0 0   sub operate { die new WWW::Shopify::Liquid::Renderer::Unimplemented(__PACKAGE__); }
8              
9             1;