diff options
Diffstat (limited to 'Master/tlpkg/tlperl.straw/lib/Test/Deep/ScalarRefOnly.pm')
-rwxr-xr-x | Master/tlpkg/tlperl.straw/lib/Test/Deep/ScalarRefOnly.pm | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/Master/tlpkg/tlperl.straw/lib/Test/Deep/ScalarRefOnly.pm b/Master/tlpkg/tlperl.straw/lib/Test/Deep/ScalarRefOnly.pm new file mode 100755 index 00000000000..c818ae3d0b6 --- /dev/null +++ b/Master/tlpkg/tlperl.straw/lib/Test/Deep/ScalarRefOnly.pm @@ -0,0 +1,36 @@ +use strict; +use warnings; + +package Test::Deep::ScalarRefOnly; + +use Test::Deep::Cmp; + +sub init +{ + my $self = shift; + + my $val = shift; + + $self->{val} = $val; +} + +sub descend +{ + my $self = shift; + + my $got = shift; + + my $exp = $self->{val}; + + return Test::Deep::descend($$got, $$exp); +} + +sub render_stack +{ + my $self = shift; + my ($var, $data) = @_; + + return "\${$var}"; +} + +1; |