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 37     37   14448 use strict;
  37         114  
  37         1131  
3 37     37   231 use warnings;
  37         96  
  37         1355  
4              
5             package WWW::Shopify::Liquid::Tag::Comment;
6 37     37   229 use base 'WWW::Shopify::Liquid::Tag::Enclosing';
  37         101  
  37         4961  
7 85     85 0 565 sub inner_halt_lexing { return 1; }
8 0     0 0 0 sub max_arguments { return 0; }
9 1     1 0 4 sub process { return ''; }
10              
11              
12              
13             1;