File Coverage

blib/lib/XML/EPP/Host/Check.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;
2 1     1   2628 use Moose;
  0            
  0            
3             use PRANG::Graph;
4             sub root_element { "check" }
5              
6             with
7             'XML::EPP::Host::RQ',
8             'XML::EPP::Host::Node',
9             'XML::EPP::Host::List';
10              
11             1;
12              
13             =head1 NAME
14              
15             XML::EPP::Host::Check
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