File Coverage

blib/lib/XML/Atom/Syndication/Link.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::Link;
2 4     4   1403 use strict;
  4         8  
  4         176  
3              
4 4     4   25 use base qw( XML::Atom::Syndication::Object );
  4         4  
  4         558  
5              
6             XML::Atom::Syndication::Link->mk_accessors('attribute',
7             qw( href rel type hreflang title length ));
8              
9 35     35 1 145 sub element_name { 'link' }
10              
11             1;
12              
13             __END__