File Coverage

blib/lib/XML/EPP/Host/List.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::List;
2              
3 1     1   2380 use Moose::Role;
  0            
  0            
4             with 'XML::EPP::Host::Node';
5             use PRANG::Graph;
6             has_element 'items' =>
7             is => "ro",
8             isa => "ArrayRef[XML::EPP::Common::labelType]",
9             xml_nodeName => "name",
10             ;
11             1;
12              
13             =head1 NAME
14              
15             ? - implement ?
16              
17             =head1 SYNOPSIS
18              
19             TODO
20              
21             =head1 DESCRIPTION
22              
23             ...
24              
25             =head2 XML Schema Definition
26              
27             <!--
28             Child elements of the <delete> and <info> commands.
29             -->
30             <complexType name="sNameType">
31             <sequence>
32             <element name="name" type="eppcom:labelType"/>
33             </sequence>
34             </complexType>
35              
36             =cut