File Coverage

blib/lib/XML/EPP/Host/Create/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::Create::Response;
2              
3 1     1   2502 use Moose;
  0            
  0            
4             use PRANG::Graph;
5             sub root_element { "creData" }
6              
7             with
8             'XML::EPP::Host::RS',
9             'XML::EPP::Host::Node',
10             ;
11              
12             has_element 'name' =>
13             is => "ro",
14             isa => "XML::EPP::Common::labelType",
15             ;
16              
17             has_element 'created' =>
18             is => "ro",
19             isa => "PRANG::XMLSchema::dateTime",
20             xml_nodeName => "crDate",
21             ;
22              
23             1;
24              
25             =head1 NAME
26              
27             ? - implement ?
28              
29             =head1 SYNOPSIS
30              
31             TODO
32              
33             =head1 DESCRIPTION
34              
35             ...
36              
37             =head2 XML Schema Definition
38              
39             <!--
40             <create> response elements.
41             -->
42             <complexType name="creDataType">
43             <sequence>
44             <element name="name" type="eppcom:labelType"/>
45             <element name="crDate" type="dateTime"/>
46             </sequence>
47             </complexType>
48              
49             =cut