use strict; use warnings; package Test::Deep::Any; use Test::Deep::Cmp; sub init { my $self = shift; my @list = map { eval { $_->isa('Test::Deep::Any') } ? @{ $_->{val} } : Test::Deep::wrap($_) } @_; $self->{val} = \@list; } sub descend { my $self = shift; my $got = shift; foreach my $cmp (@{$self->{val}}) { return 1 if Test::Deep::eq_deeply_cache($got, $cmp); } return 0; } sub diagnostics { my $self = shift; my ($where, $last) = @_; my $expect = $self->{val}; my $got = $self->renderGot($last->{got}); my $things = join(", ", map {$_->renderExp} @$expect); my $diag = <