File Coverage

blib/lib/XML/EPP/Contact/Location.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::Contact::Location;
2              
3 1     1   2649 use Moose;
  0            
  0            
4             use PRANG::Graph;
5             use Moose::Util::TypeConstraints;
6              
7             with 'XML::EPP::Contact::Node';
8              
9             has_attr 'type' =>
10             is => 'ro',
11             isa => 'XML::EPP::Contact::postalInfoEnumType',
12             ;
13              
14             1;
15              
16             =head1 NAME
17              
18             ? - implement ?
19              
20             =head1 SYNOPSIS
21              
22             TODO
23              
24             =head1 DESCRIPTION
25              
26             ...
27              
28             =head2 XML Schema Definition
29              
30             <complexType name="intLocType">
31             <attribute name="type" type="contact:postalInfoEnumType"
32             use="required"/>
33             </complexType>
34              
35             =cut