File Coverage

blib/lib/SRS/EPP/SRSRequest.pm
Criterion Covered Total %
statement 7 9 77.7
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 10 12 83.3


line stmt bran cond sub pod time code
1              
2             package SRS::EPP::SRSRequest;
3             {
4             $SRS::EPP::SRSRequest::VERSION = '0.22';
5             }
6              
7 2     2   3070 use Moose;
  2         479970  
  2         20  
8 2     2   14326 use Moose::Util::TypeConstraints qw(subtype coerce as where enum);
  2         5  
  2         23  
9              
10             extends 'SRS::EPP::Message';
11              
12 2     2   2497 use XML::SRS;
  0            
  0            
13             has "+message" =>
14             isa => "XML::SRS::Action|XML::SRS::Query",
15             handles => [qw(action_id)],
16             ;
17              
18             1;