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   8 use strict;
  1         2  
  1         30  
2 1     1   5 use warnings;
  1         1  
  1         37  
3              
4             package Test::Deep::Ignore 1.203;
5              
6 1     1   350 use Test::Deep::Cmp;
  1         2  
  1         4  
7              
8             my $Singleton = __PACKAGE__->SUPER::new;
9              
10             sub new
11             {
12 1     1 0 4 return $Singleton;
13             }
14              
15             sub descend
16             {
17 1     1 0 3 return 1;
18             }
19              
20             1;
21              
22             __END__