File Coverage

blib/lib/Test/Deep/Ignore.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 2 0.0
total 16 18 88.8


line stmt bran cond sub pod time code
1 1     1   7 use strict;
  1         3  
  1         32  
2 1     1   5 use warnings;
  1         3  
  1         48  
3              
4             package Test::Deep::Ignore 1.204;
5              
6 1     1   360 use Test::Deep::Cmp;
  1         2  
  1         5  
7              
8             my $Singleton = __PACKAGE__->SUPER::new;
9              
10             sub new
11             {
12 1     1 0 6 return $Singleton;
13             }
14              
15             sub descend
16             {
17 1     1 0 3 return 1;
18             }
19              
20             1;
21              
22             __END__