File Coverage

lib/Module/New/Log.pm
Criterion Covered Total %
statement 16 20 80.0
branch n/a
condition n/a
subroutine 6 8 75.0
pod n/a
total 22 28 78.5


line stmt bran cond sub pod time code
1             package Module::New::Log;
2            
3 6     6   21 use strict;
  6         6  
  6         147  
4 6     6   19 use warnings;
  6         5  
  6         98  
5 6     6   2417 use Log::Dump;
  6         11959  
  6         26  
6 6     6   2108 use Module::New::Meta;
  6         8  
  6         28  
7            
8             methods {
9 139     139   291 log => sub { shift; __PACKAGE__->log(@_) },
  139         507  
10 12     12   79 logger => sub { shift; __PACKAGE__->logger(@_) },
  12         74  
11 0     0     logfile => sub { shift; __PACKAGE__->logfile(@_) },
  0            
12 0     0     logfilter => sub { shift; __PACKAGE__->logfilter(@_) },
  0            
13             };
14            
15             1;
16            
17             __END__