Current Path : /proc/self/root/proc/2/root/usr/local/share/perl5/Test/Deep/ |
Current File : //proc/self/root/proc/2/root/usr/local/share/perl5/Test/Deep/Class.pm |
use strict; use warnings; package Test::Deep::Class; use Test::Deep::Cmp; sub init { my $self = shift; my $snobby = shift; my $val = shift; $self->{snobby} = $snobby; $self->{val} = $val; } sub descend { my $self = shift; my $got = shift; local $Test::Deep::Snobby = $self->{snobby}; Test::Deep::wrap($self->{val})->descend($got); } 1;