File Coverage

blib/lib/XML/EPP/Host/Check/Response.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             package XML::EPP::Host::Check::Response;
2              
3 1     1   2579 use Moose;
  0            
  0            
4             use PRANG::Graph;
5             sub root_element { "chkData" }
6              
7             with
8             'XML::EPP::Host::RS',
9             'XML::EPP::Host::Node',
10             ;
11              
12             use XML::EPP::Host::Check::Status;
13             has_element 'items' =>
14             is => "ro",
15             isa => "ArrayRef[XML::EPP::Host::Check::Status]",
16             xml_nodeName => "cd",
17             required => 1,
18             ;
19              
20             1;
21              
22             =head1 NAME
23              
24             ? - implement ?
25              
26             =head1 SYNOPSIS
27              
28             TODO
29              
30             =head1 DESCRIPTION
31              
32             ...
33              
34             =head2 XML Schema Definition
35              
36             <complexType name="chkDataType">
37             <sequence>
38             <element name="cd" type="host:checkType"
39             maxOccurs="unbounded"/>
40             </sequence>
41             </complexType>
42              
43             =cut