File Coverage

blib/lib/XML/EPP/Grace/Data.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::Grace::Data;
3              
4 1     1   2031 use Moose;
  0            
  0            
5             use PRANG::Graph;
6              
7             with 'XML::EPP::Grace::Node';
8              
9             use XML::EPP::Grace::Status;
10             has_element 'statuses' =>
11             is => 'ro',
12             isa => 'ArrayRef[XML::EPP::Grace::Status]',
13             xml_nodeName => "rgpStatus",
14             required => 1,
15             ;
16              
17             use Moose::Util::TypeConstraints;
18             subtype "XML::EPP::Grace::respDataType"
19             => as __PACKAGE__;
20              
21             1;