| Server IP : 162.214.74.102 / Your IP : 216.73.217.80 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/local/share/perl5/Test/Deep/ |
Upload File : |
use strict;
use warnings;
package Test::Deep::None;
use Test::Deep::Cmp;
sub init
{
my $self = shift;
my @list = map {
eval { $_->isa('Test::Deep::None') }
? @{ $_->{val} }
: $_
} @_;
$self->{val} = \@list;
}
sub descend
{
my $self = shift;
my $got = shift;
foreach my $cmp (@{$self->{val}})
{
return 0 if Test::Deep::eq_deeply_cache($got, $cmp);
}
return 1;
}
sub renderExp
{
my $self = shift;
my @expect = map {; Test::Deep::wrap($_) } @{ $self->{val} };
my $things = join(", ", map {$_->renderExp} @expect);
return "None of ( $things )";
}
sub diagnostics
{
my $self = shift;
my ($where, $last) = @_;
my $got = $self->renderGot($last->{got});
my $exp = $self->renderExp;
my $diag = <<EOM;
Comparing $where with None
got : $got
expected : $exp
EOM
$diag =~ s/\n+$/\n/;
return $diag;
}
1;