File Coverage

blib/lib/XML/EPP/Host/RQ.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::RQ;
2 1     1   3146 use Moose::Role;
  0            
  0            
3             with qw(XML::EPP::Host);
4             sub is_command { 1 }
5             1;
6              
7             =head1 NAME
8              
9             XML::EPP::Host::RQ
10              
11             =head1 SYNOPSIS
12              
13             TODO
14              
15             =head1 DESCRIPTION
16              
17             This module provides a role for all the Host command requests.
18              
19             =head2 XML Schema Definition
20              
21             <!--
22             Child elements found in EPP commands.
23             -->
24             <element name="check" type="host:mNameType"/>
25             <element name="create" type="host:createType"/>
26             <element name="delete" type="host:sNameType"/>
27             <element name="info" type="host:sNameType"/>
28             <element name="update" type="host:updateType"/>
29              
30             =cut