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   617 use strict;
  5         10  
  5         190  
3              
4 5     5   33 use base qw( XML::Atom::Syndication::Object );
  5         20  
  5         624  
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__