File Coverage

blib/lib/XML/EPP/Grace/Node.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             package XML::EPP::Grace::Node;
2              
3 1     1   3679 use Moose::Role;
  0            
  0            
4             use XML::EPP::Common;
5              
6             sub xmlns {
7             "urn:ietf:params:xml:ns:rgp-1.0";
8             }
9              
10             1;
11              
12             =head1 NAME
13              
14             XML::EPP::Grace::Node - role for nodes in the RFC3915 (RGP) extension
15              
16             =head1 SYNOPSIS
17              
18             package XML::EPP::Grace::Foo;
19             use Moose;
20             use PRANG::Graph;
21              
22             ...
23              
24             with 'XML::EPP::Grace::Node';
25              
26             =head1 DESCRIPTION
27              
28             Provides a role for all XML::EPP::Grace::* elements to use.
29              
30             =cut