File Coverage

blib/lib/DTL/Fast/Tags.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package DTL::Fast::Tags;
2 98     98   572 use strict; use utf8; use warnings FATAL => 'all';
  98     98   183  
  98     98   2328  
  98         475  
  98         170  
  98         481  
  98         2393  
  98         175  
  98         3687  
3              
4 98     98   493 use DTL::Fast qw(register_tag);
  98         172  
  98         11798  
5              
6             # built in tags
7             register_tag(qw(
8             autoescape DTL::Fast::Tag::Autoescape
9             block DTL::Fast::Tag::Block
10             comment DTL::Fast::Tag::Comment
11             cycle DTL::Fast::Tag::Cycle
12             debug DTL::Fast::Tag::Debug
13             extends DTL::Fast::Tag::Extends
14             filter DTL::Fast::Tag::Filter
15             firstof DTL::Fast::Tag::Firstof
16             for DTL::Fast::Tag::For
17             include DTL::Fast::Tag::Include
18             if DTL::Fast::Tag::If
19             ifchanged DTL::Fast::Tag::Ifchanged
20             ifequal DTL::Fast::Tag::Ifequal
21             ifnotequal DTL::Fast::Tag::Ifnotequal
22             load DTL::Fast::Tag::Load
23             now DTL::Fast::Tag::Now
24             regroup DTL::Fast::Tag::Regroup
25             spaceless DTL::Fast::Tag::Spaceless
26             ssi DTL::Fast::Tag::Ssi
27             templatetag DTL::Fast::Tag::Templatetag
28             url DTL::Fast::Tag::Url
29             verbatim DTL::Fast::Tag::Verbatim
30             widthratio DTL::Fast::Tag::Widthratio
31             with DTL::Fast::Tag::With
32             ));
33              
34             # not from Django
35             register_tag(qw(
36             firstofdefined DTL::Fast::Tag::Firstofdefined
37             sprintf DTL::Fast::Tag::Sprintf
38             block_super DTL::Fast::Tag::BlockSuper
39             dump DTL::Fast::Tag::Dump
40             dump_html DTL::Fast::Tag::DumpHTML
41             dump_warn DTL::Fast::Tag::DumpWarn
42             ));
43              
44             1;