File Coverage

blib/lib/WWW/Shopify/Liquid/Tag/Continue.pm
Criterion Covered Total %
statement 10 11 90.9
branch n/a
condition n/a
subroutine 4 5 80.0
pod 0 2 0.0
total 14 18 77.7


line stmt bran cond sub pod time code
1             #!/usr/bin/perl
2 37     37   14610 use strict;
  37         108  
  37         1123  
3 37     37   221 use warnings;
  37         98  
  37         1592  
4              
5             package WWW::Shopify::Liquid::Tag::Continue;
6 37     37   222 use base 'WWW::Shopify::Liquid::Tag::Free';
  37         93  
  37         4976  
7 0     0 0 0 sub min_arguments { return 1; }
8             sub process {
9 2     2 0 22 die new WWW::Shopify::Liquid::Exception::Control::Continue();
10             }
11              
12              
13              
14             1;