File Coverage

blib/lib/XML/EPP/Host/Notification/Result.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::Host::Notification::Result;
3              
4 1     1   2477 use Moose;
  0            
  0            
5             use PRANG::Graph;
6             with 'XML::EPP::Host::Node';
7              
8             has_element "name" =>
9             is => "ro",
10             isa => "XML::EPP::Common::labelType",
11             xml_nodeName => "",
12             ;
13              
14             has_attr "approved" =>
15             is => "ro",
16             isa => "PRANG::XMLSchema::boolean",
17             required => 1,
18             xml_name => "paResult",
19             ;
20              
21             1;
22              
23             =head1 NAME
24              
25             XML::EPP::Host::Notification::Result - implement ?
26              
27             =head1 SYNOPSIS
28              
29             TODO
30              
31             =head1 DESCRIPTION
32              
33             ...
34              
35             =head2 XML Schema Definition
36              
37             <complexType name="paNameType">
38             <simpleContent>
39             <extension base="eppcom:labelType">
40             <attribute name="paResult" type="boolean"
41             use="required"/>
42             </extension>
43             </simpleContent>
44             </complexType>
45              
46             =cut