File Coverage

blib/lib/XML/EPP/Domain/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              
2             package XML::EPP::Domain::Delete;
3              
4 1     1   2435 use Moose;
  0            
  0            
5             use PRANG::Graph;
6              
7             sub root_element { 'delete' }
8              
9             with 'XML::EPP::Domain::RQ', 'XML::EPP::Domain::Node';
10              
11             has_element 'name' =>
12             is => 'ro',
13             isa => 'XML::EPP::Common::labelType',
14             ;
15              
16             1;
17              
18             =head1 NAME
19              
20             ? - implement ?
21              
22             =head1 SYNOPSIS
23              
24             TODO
25              
26             =head1 DESCRIPTION
27              
28             ...
29              
30             =head2 XML Schema Definition
31              
32             <!--
33             Child element of commands that require a single name.
34             -->
35             <complexType name="sNameType">
36             <sequence>
37             <element name="name" type="eppcom:labelType"/>
38             </sequence>
39             </complexType>
40              
41             =cut