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   711 use strict;
  6         8  
  6         148  
4 6     6   17 use warnings;
  6         6  
  6         99  
5 6     6   2225 use Log::Dump;
  6         11018  
  6         26  
6 6     6   2112 use Module::New::Meta;
  6         8  
  6         43  
7            
8             methods {
9 139     139   301 log => sub { shift; __PACKAGE__->log(@_) },
  139         470  
10 12     12   81 logger => sub { shift; __PACKAGE__->logger(@_) },
  12         80  
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__