File Coverage

blib/lib/XML/EPP/Grace/MixedMsg.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::MixedMsg;
3              
4 1     1   2192 use Moose;
  0            
  0            
5             use PRANG::Graph;
6              
7             extends 'XML::EPP::Grace::MixedData';
8              
9             has_attr 'lang' =>
10             is => "rw",
11             isa => "PRANG::XMLSchema::language",
12             default => "en",
13             ;
14              
15             use Moose::Util::TypeConstraints;
16             subtype "XML::EPP::Grace::mixedMsgType"
17             => as __PACKAGE__;
18              
19             1;