File Coverage

blib/lib/XML/SRS/Zone/List.pm
Criterion Covered Total %
statement 2 4 50.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 4 6 66.6


line stmt bran cond sub pod time code
1              
2             package XML::SRS::Zone::List;
3             BEGIN {
4 1     1   1878 $XML::SRS::Zone::List::VERSION = '0.09';
5             }
6              
7 1     1   9015 use Moose;
  0            
  0            
8             use PRANG::Graph;
9             use XML::SRS::Zone;
10              
11             has_element 'zones' =>
12             is => "rw",
13             isa => "ArrayRef[XML::SRS::Zone]",
14             xml_nodeName => "SecondLD",
15             required => 1,
16             ;
17              
18             with 'XML::SRS::Node';
19              
20             1;