File Coverage

blib/lib/XML/EPP/Contact/AddRem.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::AddRem;
2              
3 1     1   2369 use Moose;
  0            
  0            
4             use PRANG::Graph;
5             with 'XML::EPP::Contact::Node';
6              
7             use PRANG::XMLSchema::Types;
8              
9             has_element 'status' =>
10             is => 'rw',
11             isa => 'ArrayRef[XML::EPP::Contact::Status]',
12             xml_max => 7,
13             required => 1,
14             ;
15              
16             1;
17              
18             =head1 NAME
19              
20             ? - implement ?
21              
22             =head1 SYNOPSIS
23              
24             TODO
25              
26             =head1 DESCRIPTION
27              
28             ...
29              
30             =head2 XML Schema Definition
31              
32             <!--
33             Data elements that can be added or removed.
34             -->
35             <complexType name="addRemType">
36             <sequence>
37             <element name="status" type="contact:statusType"
38             maxOccurs="7"/>
39             </sequence>
40             </complexType>
41              
42             =cut