File Coverage

blib/lib/Net/DAS/EU.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 13 14 92.8


line stmt bran cond sub pod time code
1             package Net::DAS::EU;
2 2     2   4111 use 5.010;
  2         8  
3 2     2   8 use strict;
  2         4  
  2         43  
4 2     2   7 use warnings;
  2         3  
  2         182  
5              
6             sub register {
7             return {
8 1     1 0 7 tlds => [qw(eu)],
9             public => {
10             host => 'das.eu',
11             port => 4343,
12             },
13             registrar => {
14             host => 'das.registry.eu',
15             port => 4343,
16             },
17             dispatch => [ undef, undef ],
18             };
19             }
20              
21             1;
22              
23             =pod
24              
25             =head1 NAME
26              
27             Net::DAS::EU - Net::DAS .EU extension.
28              
29             See L
30              
31             =head1 AUTHOR
32              
33             Michael Holloway
34              
35             =head1 LICENSE
36              
37             Artistic License
38              
39             =cut