File Coverage

blib/lib/XML/EPP/Domain/Check/Name.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::Check::Name;
2              
3 1     1   2465 use Moose;
  0            
  0            
4             use PRANG::Graph;
5              
6             with 'XML::EPP::Domain::Node';
7              
8             has_attr 'available' =>
9             is => 'ro',
10             isa => 'PRANG::XMLSchema::boolean',
11             coerce => 1,
12             xml_name => 'avail',
13             ;
14              
15             has_element 'name' =>
16             is => 'ro',
17             isa => 'XML::EPP::Common::labelType',
18             xml_nodeName => '',
19             ;
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='checkNameType'>
38             <simpleContent>
39             <extension base='eppcom:labelType'>
40             <attribute name='avail' type='boolean'
41             use='required'/>
42             </extension>
43             </simpleContent>
44             </complexType>
45              
46             =cut