File Coverage

blib/lib/XML/EPP/Host/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::Host::Check::Status;
2              
3 1     1   2875 use Moose;
  0            
  0            
4             use PRANG::Graph;
5              
6             with 'XML::EPP::Host::Node';
7              
8             use XML::EPP::Host::Check::Name;
9             has_element 'name_status' =>
10             is => "ro",
11             isa => "ArrayRef[XML::EPP::Host::Check::Name]",
12             xml_nodeName => "name",
13             handles => [qw(available name)],
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="name" type="host:checkNameType"/>
43             <element name="reason" type="eppcom:reasonType"
44             minOccurs="0"/>
45             </sequence>
46             </complexType>
47              
48             =cut