File Coverage

blib/lib/XML/EPP/Domain/Check.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::Domain::Check;
3              
4 1     1   2305 use Moose;
  0            
  0            
5             use PRANG::Graph;
6              
7             sub root_element { 'check' }
8              
9             with 'XML::EPP::Domain::RQ', 'XML::EPP::Domain::Node';
10              
11             has_element 'names' =>
12             is => 'ro',
13             isa => 'ArrayRef[XML::EPP::Common::labelType]',
14             xml_nodeName => 'name',
15             auto_deref => 1,
16             ;
17              
18             1;
19              
20             =head1 NAME
21              
22             ? - implement ?
23              
24             =head1 SYNOPSIS
25              
26             TODO
27              
28             =head1 DESCRIPTION
29              
30             ...
31              
32             =head2 XML Schema Definition
33              
34             <!--
35             Child element of commands that accept multiple names.
36             -->
37             <complexType name="mNameType">
38             <sequence>
39             <element name="name" type="eppcom:labelType"
40             maxOccurs="unbounded"/>
41             </sequence>
42             </complexType>
43              
44             =cut