File Coverage

blib/lib/WWW/Shopify/Liquid/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 21     21   10292 use strict;
  21         42  
  21         727  
3 21     21   102 use warnings;
  21         29  
  21         687  
4              
5 21     21   126 package WWW::Shopify::Liquid::Filter::DefaultErrors; use base 'WWW::Shopify::Liquid::Filter';
  21         35  
  21         2224  
6 0     0 0   sub operate { die new WWW::Shopify::Liquid::Exception::Renderer::Unimplemented($_[0]); }
7              
8             1;