File Coverage

blib/lib/XML/EPP/Host/Rename.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::Rename;
2              
3 1     1   2665 use Moose;
  0            
  0            
4             with 'XML::EPP::Host::Node';
5             use PRANG::Graph;
6              
7             use XML::EPP::Common;
8             has_element 'name' =>
9             is => "ro",
10             isa => "XML::EPP::Common::labelType",
11             ;
12              
13             use Moose::Util::TypeConstraints;
14             subtype "XML::EPP::Host::chgType" => as __PACKAGE__;
15              
16             1;
17              
18             =head1 NAME
19              
20             XML::EPP::Host::Rename - implement host:chgType
21              
22             =head1 SYNOPSIS
23              
24             TODO
25              
26             =head1 DESCRIPTION
27              
28             ...
29              
30             =head2 XML Schema Definition
31              
32             <!--
33             Data elements that can be changed.
34             -->
35             <complexType name="chgType">
36             <sequence>
37             <element name="name" type="eppcom:labelType"/>
38             </sequence>
39             </complexType>
40              
41             =cut