File Coverage

blib/lib/Dancer/Logger/Null.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 14 14 100.0


line stmt bran cond sub pod time code
1             package Dancer::Logger::Null;
2             our $AUTHORITY = 'cpan:SUKRIA';
3             #ABSTRACT: blackhole-like silent logging engine for Dancer
4             $Dancer::Logger::Null::VERSION = '1.3514_04'; # TRIAL
5             $Dancer::Logger::Null::VERSION = '1.351404';
6 3     3   1483 use strict;
  3         4  
  3         78  
7 3     3   14 use warnings;
  3         5  
  3         71  
8 3     3   12 use base 'Dancer::Logger::Abstract';
  3         8  
  3         1342  
9              
10 1     1   520 sub _log {1}
11              
12             1;
13              
14             __END__