File Coverage

blib/lib/WWW/Shopify/Liquid/Tag/Unless.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 14 15 93.3


line stmt bran cond sub pod time code
1             #!/usr/bin/perl
2 37     37   17019 use strict;
  37         102  
  37         1049  
3 37     37   229 use warnings;
  37         94  
  37         1621  
4              
5             package WWW::Shopify::Liquid::Tag::Unless;
6 37     37   228 use base 'WWW::Shopify::Liquid::Tag::If';
  37         96  
  37         12440  
7              
8 52     52 0 237 sub inversion { return 1; }
9              
10             1;