File Coverage

blib/lib/XML/EPP/Host/Delete.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::Delete;
2 1     1   9460 use Moose;
  0            
  0            
3             use PRANG::Graph;
4             sub root_element { "delete" }
5              
6             with
7             'XML::EPP::Host::RQ',
8             'XML::EPP::Host::Node',
9             'XML::EPP::Host::Item';
10              
11             1;
12              
13             =head1 NAME
14              
15             XML::EPP::Host::Delete - implement sNameType
16              
17             =head1 SYNOPSIS
18              
19             TODO
20              
21             =head1 DESCRIPTION
22              
23             =head2 XML Schema Definition
24              
25             <!--
26             Child elements of the <delete> and <info> commands.
27             -->
28             <complexType name="sNameType">
29             <sequence>
30             <element name="name" type="eppcom:labelType"/>
31             </sequence>
32             </complexType>
33              
34             =cut