File Coverage

blib/lib/XML/EPP/ExtURI.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::ExtURI;
3              
4 1     1   2714 use Moose;
  0            
  0            
5             use MooseX::Method::Signatures;
6             use Moose::Util::TypeConstraints;
7             our $SCHEMA_PKG = "XML::EPP";
8              
9             use PRANG::Graph;
10              
11             has_element 'extURI' =>
12             is => "rw",
13             isa => "ArrayRef[PRANG::XMLSchema::anyURI]",
14             required => 1,
15             ;
16              
17             with 'XML::EPP::Node';
18              
19             subtype "${SCHEMA_PKG}::extURIType"
20             => as __PACKAGE__;
21              
22             1;