File Coverage

blib/lib/XML/EPP/Contact/Check/Status.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::Check::Status;
2              
3 1     1   3560 use Moose;
  0            
  0            
4             use PRANG::Graph;
5              
6             with 'XML::EPP::Contact::Node';
7              
8             use XML::EPP::Contact::Check::ID;
9             has_element 'id_status' =>
10             is => 'ro',
11             isa => 'ArrayRef[XML::EPP::Contact::Check::ID]',
12             xml_nodeName => 'id',
13             handles => [qw(available id)],
14             required => 1,
15             ;
16              
17             has_element 'reason' =>
18             is => 'ro',
19             isa => 'XML::EPP::Common::Reason',
20             predicate => 'has_reason',
21             xmlns => &xmlns,
22             ;
23              
24             1;
25              
26             =head1 NAME
27              
28             ? - implement ?
29              
30             =head1 SYNOPSIS
31              
32             TODO
33              
34             =head1 DESCRIPTION
35              
36             ...
37              
38             =head2 XML Schema Definition
39              
40             <complexType name="checkType">
41             <sequence>
42             <element name="id" type="contact:checkIDType"/>
43             <element name="reason" type="eppcom:reasonType"
44             minOccurs="0"/>
45             </sequence>
46             </complexType>
47              
48             =cut