File Coverage

blib/lib/HTML/Widgets/NavMenu/Iterator/Html/Item.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition 2 2 100.0
subroutine 4 4 100.0
pod 1 1 100.0
total 18 18 100.0


line stmt bran cond sub pod time code
1             package HTML::Widgets::NavMenu::Iterator::Html::Item;
2             $HTML::Widgets::NavMenu::Iterator::Html::Item::VERSION = '1.1000';
3 11     11   61 use strict;
  11         20  
  11         476  
4 11     11   70 use warnings;
  11         19  
  11         342  
5              
6 11     11   53 use parent qw(HTML::Widgets::NavMenu::Tree::Iterator::Item);
  11         20  
  11         42  
7              
8             sub get_url_type
9             {
10 684     684 1 962 my $item = shift;
11             return ( $item->_node()->url_type()
12 684   100     3805 || $item->_accum_state()->{'rec_url_type'}
13             || "rel" );
14             }
15              
16             1;
17              
18             __END__