File Coverage

blib/lib/XML/EPP/Common/Password.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::Common::Password;
3              
4 1     1   2840 use Moose;
  0            
  0            
5             use MooseX::Method::Signatures;
6             use Moose::Util::TypeConstraints;
7             use PRANG::Graph;
8             use PRANG::XMLSchema::Types;
9              
10             our $SCHEMA_PKG = "XML::EPP::Common";
11              
12             has_attr 'roid' =>
13             is => "rw",
14             isa => "${SCHEMA_PKG}::roidType",
15             predicate => "has_roid",
16             ;
17              
18             has_element 'content' =>
19             is => "rw",
20             isa => "PRANG::XMLSchema::normalizedString",
21             xml_nodeName => "",
22             ;
23              
24             with 'XML::EPP::Common::Node';
25              
26             subtype "${SCHEMA_PKG}::pwAuthInfoType"
27             => as __PACKAGE__;
28              
29             1;