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   24 use strict;
  6         6  
  6         169  
4 6     6   23 use warnings;
  6         5  
  6         107  
5 6     6   2537 use Log::Dump;
  6         14568  
  6         35  
6 6     6   2655 use Module::New::Meta;
  6         11  
  6         36  
7              
8             methods {
9 139     139   466 log => sub { shift; __PACKAGE__->log(@_) },
  139         839  
10 12     12   93 logger => sub { shift; __PACKAGE__->logger(@_) },
  12         104  
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__