File Coverage

blib/lib/XML/EPP/Grace/Restore.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::Restore;
3              
4 1     1   2119 use Moose;
  0            
  0            
5             use PRANG::Graph;
6             use PRANG::XMLSchema::Types;
7             use Moose::Util::TypeConstraints;
8              
9             enum "XML::EPP::Grace::rgpOpType" => qw(request report);
10              
11             has_attr 'op' =>
12             is => "ro",
13             isa => "XML::EPP::Grace::rgpOpType",
14             required => 1,
15             ;
16              
17             has_element "report" =>
18             is => "ro",
19             isa => "XML::EPP::Grace::Report",
20             xml_required => 0,
21             ;
22              
23             with 'XML::EPP::Grace::Node';
24              
25             subtype 'XML::EPP::Grace::restoreType'
26             => as __PACKAGE__;
27              
28             1;