File Coverage

blib/lib/WWW/Shopify/Liquid/Tag/Continue.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 30     30   15442 use strict;
  30         59  
  30         925  
3 30     30   118 use warnings;
  30         45  
  30         1080  
4              
5             package WWW::Shopify::Liquid::Tag::Continue;
6 30     30   128 use base 'WWW::Shopify::Liquid::Tag::Free';
  30         37  
  30         3352  
7 0     0 0   sub min_arguments { return 1; }
8             sub process {
9 0     0 0   die new WWW::Shopify::Liquid::Exception::Control::Continue();
10             }
11              
12              
13              
14             1;