File Coverage

blib/lib/XML/EPP/Common/ExtPassword.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::ExtPassword;
3              
4 1     1   35252 use Moose::Role;
  0            
  0            
5             use MooseX::Method::Signatures;
6             use Moose::Util::TypeConstraints;
7             our $SCHEMA_PKG = "XML::EPP::Common";
8              
9             # <any namespace="##other"> maps to MessageNode; it's a free for all!
10              
11             subtype "${SCHEMA_PKG}::extAuthInfoType"
12             => as __PACKAGE__;
13              
14             1;
15              
16             =head1 NAME
17              
18             XML::EPP::Common::ExtPassword
19              
20             =head1 SYNOPSIS
21              
22             ...
23              
24             =head1 DESCRIPTION
25              
26             ...
27              
28             =head2 XML Schema Definition
29              
30             <complexType name="extAuthInfoType">
31             <sequence>
32             <any namespace="##other"/>
33             </sequence>
34             </complexType>
35              
36             =cut