File Coverage

blib/lib/XML/Atom/Syndication/Category.pm
Criterion Covered Total %
statement 7 7 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 1 1 100.0
total 11 11 100.0


line stmt bran cond sub pod time code
1             package XML::Atom::Syndication::Category;
2 3     3   1854 use strict;
  3         6  
  3         136  
3              
4 3     3   20 use base qw( XML::Atom::Syndication::Object );
  3         6  
  3         1332  
5              
6             XML::Atom::Syndication::Category->mk_accessors('attribute', 'term', 'scheme',
7             'label');
8              
9 10     10 1 38 sub element_name { 'category' }
10              
11             1;
12              
13             __END__