File Coverage

blib/lib/Net/EPP/Frame/Command/Info.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: Info.pm,v 1.7 2011/12/03 11:44:52 gavin Exp $
6             package Net::EPP::Frame::Command::Info;
7 1     1   348 use Net::EPP::Frame::Command::Info::Contact;
  1         1  
  1         18  
8 1     1   325 use Net::EPP::Frame::Command::Info::Domain;
  1         2  
  1         31  
9 1     1   374 use Net::EPP::Frame::Command::Info::Host;
  1         1  
  1         21  
10 1     1   3 use base qw(Net::EPP::Frame::Command);
  1         1  
  1         62  
11 1     1   3 use strict;
  1         1  
  1         20  
12              
13             =pod
14              
15             =head1 NAME
16              
17             Net::EPP::Frame::Command::Info - an instance of L
18             for the EPP CinfoE> 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;