File Coverage

blib/lib/XML/SRS/AuditDetails.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::AuditDetails;
3              
4 1     1   1487 use Moose;
  0            
  0            
5             use PRANG::Graph;
6             use XML::SRS::Types;
7             use XML::SRS::Date::Range;
8              
9             has_attr 'registrar_id' =>
10             is => "ro",
11             isa => "XML::SRS::RegistrarId",
12             xml_name => "RegistrarId",
13             xml_required => 0,
14             ;
15              
16             has_attr 'action_id' =>
17             is => "ro",
18             isa => "XML::SRS::UID",
19             xml_name => "ActionId",
20             xml_required => 0,
21             ;
22              
23             has_element 'when' =>
24             is => "ro",
25             isa => "XML::SRS::Date::Range",
26             xml_required => 0,
27             xml_nodeName => "AuditTime",
28             ;
29              
30             has_element 'comment' =>
31             is => "ro",
32             isa => "Str",
33             xml_required => 0,
34             xml_nodeName => "AuditText",
35             ;
36              
37             with 'XML::SRS::Node';
38             1;