File Coverage

blib/lib/XML/EPP/Plugin.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::Plugin;
3              
4 1     1   2911 use Moose::Role;
  0            
  0            
5             use PRANG::Graph;
6              
7             with 'PRANG::Graph';
8              
9             requires 'is_command';
10              
11             1;
12              
13             =head1 NAME
14              
15             XML::EPP::Plugin
16              
17             =head1 SYNOPSIS
18              
19             package XML::EPP::Domain;
20             use Moose::Role;
21             with qw(XML::EPP::Plugin PRANG::Graph);
22             sub is_command { 0|1 };
23             1;
24              
25             =head1 DESCRIPTION
26              
27             Provides a role which can be incorporated to show that this element is a plugin.
28              
29             =head2 XML Schema Definition
30              
31             n/a
32              
33             =cut