File Coverage

blib/lib/Template/LiquidX/Tidy/Tag/post_url.pm
Criterion Covered Total %
statement 13 18 72.2
branch n/a
condition n/a
subroutine 5 6 83.3
pod 0 1 0.0
total 18 25 72.0


line stmt bran cond sub pod time code
1             package Template::LiquidX::Tidy::Tag::post_url;
2              
3 1     1   7 use strict;
  1         3  
  1         29  
4 1     1   5 use warnings;
  1         2  
  1         25  
5 1     1   5 use experimental 'signatures';
  1         3  
  1         6  
6              
7 1     1   100 use base 'Template::Liquid::Tag';
  1         2  
  1         165  
8             #sub conditional_tag { }
9 1     1   4 sub import { Template::Liquid::register_tag('post_url') }
10 0     0 0   sub new ($class, $args) {
  0            
  0            
  0            
11 0           bless $args => $class
12             }
13              
14             1;
15              
16             =head1 NAME
17              
18             Template::LiquidX::Tidy::Tag::post_url - This is a DUMMY tag to support post_url
19              
20             =head1 SYNOPSIS
21              
22             You cannot use this tag for actual post URL dereferencing!
23              
24             It is only enough to support indentation of Liquid C in Template::LiquidX::Tidy.
25              
26             =cut
27