File Coverage

blib/lib/XML/EPP/Domain/Contact.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::Domain::Contact;
2              
3 1     1   3106 use Moose;
  0            
  0            
4             use PRANG::Graph;
5             with 'XML::EPP::Domain::Node';
6              
7             has_element 'value' =>
8             is => 'ro',
9             isa => 'XML::EPP::Common::clIDType',
10             xml_nodeName => '',
11             ;
12              
13             has_attr 'type' =>
14             is => "ro",
15             isa => "XML::EPP::Domain::contactAttrType",
16             ;
17              
18             #use Moose::Util::TypeConstraints;
19             #subtype "XML::EPP::Domain::statusType" => as __PACKAGE__;
20              
21             1;
22              
23             =head1 NAME
24              
25             ? - implement ?
26              
27             =head1 SYNOPSIS
28              
29             TODO
30              
31             =head1 DESCRIPTION
32              
33             ...
34              
35             =head2 XML Schema Definition
36              
37             <complexType name="contactType">
38             <simpleContent>
39             <extension base="eppcom:clIDType">
40             <attribute name="type" type="domain:contactAttrType"/>
41             </extension>
42             </simpleContent>
43             </complexType>
44              
45             =cut