File Coverage

blib/lib/WWW/Shopify/Liquid/Dialect/Shopify/Filter/DefaultErrors.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   280 use strict;
  1         2  
  1         23  
3 1     1   4 use warnings;
  1         2  
  1         28  
4              
5 1     1   4 package WWW::Shopify::Liquid::Dialect::Shopify::Filter::DefaultErrors; use base 'WWW::Shopify::Liquid::Filter';
  1         2  
  1         98  
6 0     0 0   sub operate { die new WWW::Shopify::Liquid::Exception::Renderer::Unimplemented($_[0]); }
7              
8             1;