File Coverage

blib/lib/Template/Declare/TagSet.pm
Criterion Covered Total %
statement 11 12 91.6
branch n/a
condition n/a
subroutine 5 6 83.3
pod 3 3 100.0
total 19 21 90.4


line stmt bran cond sub pod time code
1             package Template::Declare::TagSet;
2              
3 48     48   19486 use strict;
  48         75  
  48         1784  
4 48     48   228 use warnings;
  48         67  
  48         1310  
5 48     48   206 use base qw(Class::Accessor::Fast);
  48         66  
  48         27635  
6              
7             __PACKAGE__->mk_ro_accessors(
8             qw{ namespace package }
9             );
10              
11             sub get_alternate_spelling {
12 126     126 1 207 undef;
13             }
14              
15             sub get_tag_list {
16 0     0 1 0 [];
17             }
18              
19             # specify whether "" can be combined to ""
20             sub can_combine_empty_tags {
21 26     26 1 57 1;
22             }
23              
24             1;
25             __END__