File Coverage

blib/lib/Net/EPP/Frame/Command/Check.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             # Copyright (c) 2016 CentralNic Ltd. All rights reserved. This program is
2             # free software; you can redistribute it and/or modify it under the same
3             # terms as Perl itself.
4             #
5             # $Id: Check.pm,v 1.5 2011/12/03 11:44:52 gavin Exp $
6             package Net::EPP::Frame::Command::Check;
7 1     1   4 use base qw(Net::EPP::Frame::Command);
  1         1  
  1         70  
8 1     1   318 use Net::EPP::Frame::Command::Check::Domain;
  1         2  
  1         20  
9 1     1   312 use Net::EPP::Frame::Command::Check::Contact;
  1         2  
  1         20  
10 1     1   312 use Net::EPP::Frame::Command::Check::Host;
  1         2  
  1         19  
11 1     1   11 use strict;
  1         1  
  1         18  
12              
13             =pod
14              
15             =head1 NAME
16              
17             Net::EPP::Frame::Command::Check - an instance of L
18             for the EPP CcheckE> command.
19              
20             =head1 OBJECT HIERARCHY
21              
22             L
23             +----L
24             +----L
25             +----L
26             +----L
27              
28             =head1 METHODS
29              
30             This module does not define any methods in addition to those it inherits from
31             its ancestors.
32              
33             =head1 AUTHOR
34              
35             CentralNic Ltd (http://www.centralnic.com/).
36              
37             =head1 COPYRIGHT
38              
39             This module is (c) 2016 CentralNic Ltd. This module is free software; you can
40             redistribute it and/or modify it under the same terms as Perl itself.
41              
42             =head1 SEE ALSO
43              
44             =over
45              
46             =item * L
47              
48             =back
49              
50             =cut
51              
52             1;