File Coverage

blib/lib/Net/DRI/Logging/Null.pm
Criterion Covered Total %
statement 11 12 91.6
branch n/a
condition n/a
subroutine 5 6 83.3
pod 3 3 100.0
total 19 21 90.4


line stmt bran cond sub pod time code
1             ## Domain Registry Interface, Null Logging operations for Net::DRI
2             ##
3             ## Copyright (c) 2009 Patrick Mevzek . All rights reserved.
4             ##
5             ## This file is part of Net::DRI
6             ##
7             ## Net::DRI is free software; you can redistribute it and/or modify
8             ## it under the terms of the GNU General Public License as published by
9             ## the Free Software Foundation; either version 2 of the License, or
10             ## (at your option) any later version.
11             ##
12             ## See the LICENSE file that comes with this distribution for more details.
13             ####################################################################################################
14              
15             package Net::DRI::Logging::Null;
16              
17 70     70   34443 use strict;
  70         99  
  70         1715  
18 70     70   221 use warnings;
  70         82  
  70         1756  
19              
20 70     70   223 use base qw/Net::DRI::Logging/;
  70         70  
  70         28497  
21              
22             ####################################################################################################
23              
24 0     0 1 0 sub name { return 'null'; }
25 71     71 1 881 sub setup_channel { return; }
26 538     538 1 3859 sub output { return; }
27              
28             ####################################################################################################
29             1;
30              
31             __END__