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 12     12   85 #line 1
  12         25  
  12         506  
2 12     12   63 use strict;
  12         24  
  12         517  
3             use warnings;
4              
5             package Test::Deep::Array;
6 12     12   8049  
  12         691  
  12         115  
7             use Test::Deep::Ref;
8              
9             sub init
10 65     65 0 93 {
11             my $self = shift;
12 65         85  
13             my $val = shift;
14 65         1488  
15             $self->{val} = $val;
16             }
17              
18             sub descend
19 65     65 0 96 {
20 65         87 my $self = shift;
21             my $got = shift;
22 65         109  
23             my $exp = $self->{val};
24 65 50       237  
25             return 0 unless Test::Deep::descend($got, Test::Deep::arraylength(scalar @$exp));
26 65 50       386  
27             return 0 unless $self->test_class($got);
28 65         267  
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;