File Coverage

inc/Test/Deep/Array.pm
Criterion Covered Total %
statement 18 19 94.7
branch 2 4 50.0
condition n/a
subroutine 5 6 83.3
pod 0 3 0.0
total 25 32 78.1


line stmt bran cond sub pod time code
1 2     2   13 #line 1
  2         5  
  2         87  
2 2     2   12 use strict;
  2         5  
  2         98  
3             use warnings;
4              
5             package Test::Deep::Array;
6 2     2   554  
  2         5  
  2         19  
7             use Test::Deep::Ref;
8              
9             sub init
10 19     19 0 31 {
11             my $self = shift;
12 19         32  
13             my $val = shift;
14 19         285  
15             $self->{val} = $val;
16             }
17              
18             sub descend
19 19     19 0 32 {
20 19         26 my $self = shift;
21             my $got = shift;
22 19         37  
23             my $exp = $self->{val};
24 19 50       79  
25             return 0 unless Test::Deep::descend($got, Test::Deep::arraylength(scalar @$exp));
26 19 50       88  
27             return 0 unless $self->test_class($got);
28 19         98  
29             return Test::Deep::descend($got, Test::Deep::arrayelementsonly($exp));
30             }
31              
32             sub reset_arrow
33 0     0 0   {
34             return 0;
35             }
36              
37             1;