File Coverage

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


line stmt bran cond sub pod time code
1             package Template::Declare::TagSet::RDF::EM;
2              
3 1     1   68 use strict;
  1         3  
  1         76  
4 1     1   6 use warnings;
  1         2  
  1         46  
5 1     1   6 use base 'Template::Declare::TagSet';
  1         2  
  1         720  
6             #use Smart::Comments;
7              
8             sub get_tag_list {
9 1     1 1 5 return [ qw{
10             aboutURL contributor creator
11             description developer file
12             hidden homepageURL iconURL
13             id locale localized
14             maxVersion minVersion name
15             optionsURL package requires
16             skin targetApplication targetPlatform
17             translator type updateURL
18             version
19             } ];
20             }
21              
22             1;
23             __END__