File Coverage

inc/Test/Deep/Blessed.pm
Criterion Covered Total %
statement 20 26 76.9
branch n/a
condition n/a
subroutine 6 8 75.0
pod 0 4 0.0
total 26 38 68.4


line stmt bran cond sub pod time code
1 2     2   12 #line 1
  2         6  
  2         76  
2 2     2   12 use strict;
  2         4  
  2         83  
3             use warnings;
4              
5             package Test::Deep::Blessed;
6 2     2   12  
  2         5  
  2         15  
7             use Test::Deep::Cmp;
8 2     2   12  
  2         17  
  2         544  
9             use Scalar::Util qw( blessed );
10              
11             sub init
12 63     63 0 78 {
13             my $self = shift;
14 63         70  
15             my $val = shift;
16 63         341  
17             $self->{val} = $val;
18             }
19              
20             sub descend
21 63     63 0 86 {
22 63         68 my $self = shift;
23             my $got = shift;
24 63         101  
25 63         126 my $exp = $self->{val};
26             my $blessed = blessed($got);
27 63         168  
28             return Test::Deep::descend($blessed, Test::Deep::shallow($exp));
29             }
30              
31             sub render_stack
32 0     0 0   {
33 0           my $self = shift;
34             my $var = shift;
35 0            
36             return "blessed($var)"
37             }
38              
39             sub renderGot
40 0     0 0   {
41             my $self = shift;
42 0            
43             my $got = shift;
44 0            
45             $self->SUPER::renderGot(blessed($got));
46             }
47              
48             1;