File Coverage

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