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 61     61   42028 use strict;
  61         104  
  61         2292  
18 61     61   371 use warnings;
  61         84  
  61         2154  
19              
20 61     61   261 use base qw/Net::DRI::Logging/;
  61         93  
  61         35530  
21              
22             ####################################################################################################
23              
24 0     0 1 0 sub name { return 'null'; }
25 62     62 1 1057 sub setup_channel { return; }
26 484     484 1 4341 sub output { return; }
27              
28             ####################################################################################################
29             1;
30              
31             __END__