File Coverage

blib/lib/Net/DAS/RO.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 14 15 93.3


line stmt bran cond sub pod time code
1             package Net::DAS::RO;
2 2     2   1682 use 5.010;
  2         11  
3 2     2   13 use strict;
  2         4  
  2         62  
4 2     2   13 use warnings;
  2         4  
  2         253  
5              
6             sub register {
7             return {
8 1     1 0 2 tlds => [ 'ro', map { $_ . '.ro' } qw/arts com firm info org rec store tm www nt/ ],
  10         27  
9             public => {
10             host => 'whois.rotld.ro', # rest2-test.rotld.ro
11             port => 4343,
12             },
13             registrar => {
14             host => 'whois.rotld.ro', # rest2-test.rotld.ro
15             port => 4343,
16             },
17             nl => "\r\n",
18             dispatch => [ undef, undef ],
19             };
20             }
21              
22             1;
23              
24             =pod
25              
26             =head1 NAME
27              
28             Net::DAS::RO - Net::DAS .RO extension.
29              
30             See L
31              
32             =head1 AUTHOR
33              
34             Michael Holloway
35              
36             =head1 LICENSE
37              
38             Artistic License
39              
40             =cut