File Coverage

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