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 15     15   2750 use strict;
  15         33  
  15         886  
3              
4 15     15   96 use base qw( XML::Atom::Syndication::Thing );
  15         33  
  15         6484  
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 8     8 1 35 sub element_name { 'entry' }
19              
20             1;
21              
22             __END__