File Coverage

blib/lib/XML/EPP/SubResponse.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              
2             package XML::EPP::SubResponse;
3              
4 1     1   2683 use Moose;
  0            
  0            
5             use MooseX::Method::Signatures;
6             use Moose::Util::TypeConstraints;
7             use PRANG::Graph;
8             use XML::EPP::Plugin;
9              
10             our $SCHEMA_PKG = "XML::EPP";
11              
12             has 'response_type' =>
13             is => "rw",
14             isa => "Str",
15             ;
16              
17             has_element "payload" =>
18             is => "rw",
19             isa => "XML::EPP::Plugin",
20             required => 1,
21             ;
22              
23             with "${SCHEMA_PKG}::Node";
24              
25             # no special type for this - this is 'epp:extAnyType'
26              
27             1;