File Coverage

blib/lib/WWW/Shopify/Liquid/Tag/Comment.pm
Criterion Covered Total %
statement 11 12 91.6
branch n/a
condition n/a
subroutine 5 6 83.3
pod 0 3 0.0
total 16 21 76.1


line stmt bran cond sub pod time code
1             #!/usr/bin/perl
2 21     21   11099 use strict;
  21         110  
  21         771  
3 21     21   101 use warnings;
  21         31  
  21         742  
4              
5             package WWW::Shopify::Liquid::Tag::Comment;
6 21     21   93 use base 'WWW::Shopify::Liquid::Tag::Enclosing';
  21         28  
  21         2424  
7 23     23 0 249 sub inner_halt_lexing { return 1; }
8 0     0 0 0 sub max_arguments { return 0; }
9 2     2 0 7 sub process { return ''; }
10              
11              
12              
13             1;