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 46     46   20546 use strict;
  46         76  
  46         1752  
4 46     46   218 use warnings;
  46         70  
  46         1445  
5 46     46   223 use base qw(Class::Accessor::Fast);
  46         65  
  46         29219  
6              
7             __PACKAGE__->mk_ro_accessors(
8             qw{ namespace package implementor }
9             );
10              
11             sub get_alternate_spelling {
12 126     126 1 213 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 75 1;
22             }
23              
24             1;
25             __END__