File Coverage

blib/lib/XML/EPP/Host/RS.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::RS;
2 1     1   2308 use Moose::Role;
  0            
  0            
3             with qw(XML::EPP::Host);
4             sub is_command { 0 }
5             1;
6              
7             =head1 NAME
8              
9             XML::EPP::Host::RS
10              
11             =head1 SYNOPSIS
12              
13             TODO
14              
15             =head1 DESCRIPTION
16              
17             This module provides a role for all the Host command responses.
18              
19             =head2 XML Schema Definition
20              
21             <!--
22             Child response elements.
23             -->
24             <element name="chkData" type="host:chkDataType"/>
25             <element name="creData" type="host:creDataType"/>
26             <element name="infData" type="host:infDataType"/>
27             <element name="panData" type="host:panDataType"/>
28              
29             =cut