File Coverage

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