blob: 270e98909eeab7e8cc815fdc9fdc3def20260e31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
use strict;
use warnings;
package Test::Deep::RegexpRef;
use Test::Deep::Ref;
use Test::Deep::RegexpVersion;
sub init
{
my $self = shift;
my $val = shift;
$self->{val} = $val;
}
sub descend
{
my $self = shift;
my $got = shift;
my $exp = $self->{val};
if ($Test::Deep::RegexpVersion::OldStyle) {
return 0 unless $self->test_class($got, "Regexp");
return 0 unless $self->test_reftype($got, "SCALAR");
} else {
return 0 unless $self->test_reftype($got, "REGEXP");
}
return Test::Deep::descend($got, Test::Deep::regexprefonly($exp));
}
sub renderGot
{
my $self = shift;
return shift()."";
}
1;
|