File Coverage

blib/lib/XML/EPP/Host/Delta.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::Delta;
2              
3 1     1   2608 use Moose;
  0            
  0            
4             with 'XML::EPP::Host::Node';
5             use PRANG::Graph;
6              
7             use XML::EPP::Host::Address;
8             has_element 'addr' =>
9             is => "ro",
10             isa => "ArrayRef[XML::EPP::Host::Address]",
11             xml_min => 0,
12             ;
13              
14             use XML::EPP::Host::Status;
15             has_element 'status' =>
16             is => "ro",
17             isa => "ArrayRef[XML::EPP::Host::Status]",
18             xml_min => 0,
19             xml_max => 7,
20             ;
21              
22             1;
23              
24             =head1 NAME
25              
26             ? - implement ?
27              
28             =head1 SYNOPSIS
29              
30             TODO
31              
32             =head1 DESCRIPTION
33              
34             ...
35              
36             =head2 XML Schema Definition
37              
38             <!--
39             Data elements that can be added or removed.
40             -->
41             <complexType name="addRemType">
42             <sequence>
43             <element name="addr" type="host:addrType"
44             minOccurs="0" maxOccurs="unbounded"/>
45             <element name="status" type="host:statusType"
46             minOccurs="0" maxOccurs="7"/>
47             </sequence>
48             </complexType>
49              
50             =cut