File Coverage

blib/lib/XML/EPP/Contact/Info.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::Contact::Info;
3              
4 1     1   2362 use Moose;
  0            
  0            
5             use PRANG::Graph;
6              
7             sub root_element { 'info' }
8              
9             with 'XML::EPP::Contact::RQ', 'XML::EPP::Contact::Node';
10              
11             has_element 'id' =>
12             is => 'ro',
13             isa => 'XML::EPP::Common::clIDType',
14             ;
15              
16             has_element 'auth_info' =>
17             is => 'ro',
18             isa => 'XML::EPP::Contact::AuthInfo',
19             xml_required => 0,
20             xml_nodeName => 'authInfo',
21             predicate => 'has_auth_info',
22             ;
23              
24             1;
25              
26             =head1 NAME
27              
28             ? - implement ?
29              
30             =head1 SYNOPSIS
31              
32             TODO
33              
34             =head1 DESCRIPTION
35              
36             ...
37              
38             =head2 XML Schema Definition
39              
40             <!--
41             Child elements of the <info> and <transfer> commands.
42             -->
43             <complexType name="authIDType">
44             <sequence>
45             <element name="id" type="eppcom:clIDType"/>
46             <element name="authInfo" type="contact:authInfoType"
47             minOccurs="0"/>
48             </sequence>
49             </complexType>
50              
51             =cut