File Coverage

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