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   617 use strict;
  98         194  
  98         2335  
3 98     98   437 use utf8;
  98         188  
  98         408  
4 98     98   2101 use warnings FATAL => 'all';
  98         186  
  98         2962  
5              
6 98     98   478 use DTL::Fast qw(register_tag);
  98         201  
  98         9204  
7              
8             # built in tags
9             register_tag(qw(
10             autoescape DTL::Fast::Tag::Autoescape
11             block DTL::Fast::Tag::Block
12             comment DTL::Fast::Tag::Comment
13             cycle DTL::Fast::Tag::Cycle
14             debug DTL::Fast::Tag::Debug
15             extends DTL::Fast::Tag::Extends
16             filter DTL::Fast::Tag::Filter
17             firstof DTL::Fast::Tag::Firstof
18             for DTL::Fast::Tag::For
19             include DTL::Fast::Tag::Include
20             if DTL::Fast::Tag::If
21             ifchanged DTL::Fast::Tag::Ifchanged
22             ifequal DTL::Fast::Tag::Ifequal
23             ifnotequal DTL::Fast::Tag::Ifnotequal
24             load DTL::Fast::Tag::Load
25             now DTL::Fast::Tag::Now
26             regroup DTL::Fast::Tag::Regroup
27             spaceless DTL::Fast::Tag::Spaceless
28             ssi DTL::Fast::Tag::Ssi
29             templatetag DTL::Fast::Tag::Templatetag
30             url DTL::Fast::Tag::Url
31             verbatim DTL::Fast::Tag::Verbatim
32             widthratio DTL::Fast::Tag::Widthratio
33             with DTL::Fast::Tag::With
34             ));
35              
36             # not from Django
37             register_tag(qw(
38             firstofdefined DTL::Fast::Tag::Firstofdefined
39             sprintf DTL::Fast::Tag::Sprintf
40             block_super DTL::Fast::Tag::BlockSuper
41             dump DTL::Fast::Tag::Dump
42             dump_html DTL::Fast::Tag::DumpHTML
43             dump_warn DTL::Fast::Tag::DumpWarn
44             ));
45              
46             1;