File Coverage

blib/lib/XML/Atom/Syndication/Entry.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::Entry;
2 14     14   1307 use strict;
  14         17  
  14         435  
3              
4 14     14   51 use base qw( XML::Atom::Syndication::Thing );
  14         20  
  14         2129  
5              
6             XML::Atom::Syndication::Entry->mk_accessors('XML::Atom::Syndication::Source',
7             'source');
8             XML::Atom::Syndication::Entry->mk_accessors('XML::Atom::Syndication::Content',
9             'content');
10             XML::Atom::Syndication::Entry->mk_accessors('XML::Atom::Syndication::Text',
11             'summary');
12             XML::Atom::Syndication::Entry->mk_accessors('element', 'published');
13              
14             # deprecated 0.3 accessors
15             XML::Atom::Syndication::Entry->mk_accessors('element', 'issued', 'modified',
16             'created');
17              
18 7     7 1 24 sub element_name { 'entry' }
19              
20             1;
21              
22             __END__