File Coverage

blib/lib/XML/Atom/Syndication/Person.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package XML::Atom::Syndication::Person;
2 5     5   338 use strict;
  5         7  
  5         125  
3              
4 5     5   16 use base qw( XML::Atom::Syndication::Object );
  5         5  
  5         424  
5              
6             XML::Atom::Syndication::Person->mk_accessors('element', 'name', 'email', 'uri');
7             XML::Atom::Syndication::Person->mk_accessors('element', 'url')
8             ; # deprecated 0.3 accessors
9              
10             1;
11              
12             __END__