File Coverage

blib/lib/Template/Declare/TagSet/RDF.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Template::Declare::TagSet::RDF;
2              
3 2     2   8 use strict;
  2         4  
  2         68  
4 2     2   9 use warnings;
  2         2  
  2         59  
5 2     2   9 use base 'Template::Declare::TagSet';
  2         3  
  2         605  
6             #use Smart::Comments;
7              
8             sub get_tag_list {
9 30         82 return [ qw{
10             Alt Bag Description
11             List Property RDF
12             Seq Statement XMLLiteral
13             about li
14             first nil object
15             predicate resource rest
16             subject type value
17 3     3 1 10 }, (map { "_$_" } 1..10) ];
18             }
19              
20              
21             1;
22             __END__