Initial Commit

This commit is contained in:
Riley Schneider
2025-12-03 16:38:10 +01:00
parent c5e26bf594
commit b732d8d4b5
17680 changed files with 5977495 additions and 2 deletions

View File

@@ -0,0 +1,51 @@
use strict;
use warnings;
package Test::Deep::RegexpMatches;
use Test::Deep::Array;
use base 'Test::Deep::Array';
use Scalar::Util qw( blessed );
sub init
{
my $self = shift;
my $val = shift;
$val = Test::Deep::array($val) unless
blessed($val) and $val->isa("Test::Deep::Cmp");
$self->{val} = $val;
$self->{regex} = shift;
}
sub descend
{
my $self = shift;
my $got = shift;
return Test::Deep::descend($got, $self->{val});
}
sub render_stack
{
my $self = shift;
my $stack = shift;
$stack = "[$stack =~ $self->{regex}]";
return $stack;
# return $self->SUPER::render_stack($stack);
}
sub reset_arrow
{
return 1;
}
1;