File Coverage

blib/lib/WWW/Shopify/Liquid/Dialect/Shopify/Filter/ShopifyAssetUrl.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   287 use strict;
  1         2  
  1         24  
3 1     1   4 use warnings;
  1         1  
  1         27  
4              
5 1     1   5 package WWW::Shopify::Liquid::Dialect::Shopify::Filter::ShopifyAssetUrl; use base 'WWW::Shopify::Liquid::Filter';
  1         2  
  1         92  
6 0     0 0   sub operate { return "//cdn.shopify.com/s/shopify/" . $_[2]; }
7              
8             1;