File Coverage

blib/lib/XML/SRS/Date/Range.pm
Criterion Covered Total %
statement 1 3 33.3
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 2 4 50.0


line stmt bran cond sub pod time code
1              
2             package XML::SRS::Date::Range;
3              
4 1     1   1451 use Moose;
  0            
  0            
5             use PRANG::Graph;
6              
7             has_element 'begin' =>
8             is => "ro",
9             isa => "XML::SRS::TimeStamp",
10             xml_nodeName => "From",
11             xml_required => 0,
12             ;
13              
14             has_element 'end' =>
15             is => "ro",
16             isa => "XML::SRS::TimeStamp",
17             xml_nodeName => "To",
18             xml_required => 0,
19             ;
20              
21             with 'XML::SRS::Node';
22              
23             1;