File Coverage

blib/lib/WWW/Shopify/Liquid/Tag/Unless.pm
Criterion Covered Total %
statement 9 10 90.0
branch n/a
condition n/a
subroutine 3 4 75.0
pod 0 1 0.0
total 12 15 80.0


line stmt bran cond sub pod time code
1             #!/usr/bin/perl
2 30     30   15991 use strict;
  30         55  
  30         923  
3 30     30   121 use warnings;
  30         45  
  30         1064  
4              
5             package WWW::Shopify::Liquid::Tag::Unless;
6 30     30   125 use base 'WWW::Shopify::Liquid::Tag::If';
  30         41  
  30         14290  
7              
8 0     0 0   sub inversion { return 1; }
9              
10             1;