X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F14-callbacks.t;h=77fdd00d68105e0107588826b02b3bc35809df47;hb=b30ad18085c2c1d922eff05ee4801c38ad465807;hp=c599b2fe7dc69bf6c027408e4f488e598e7eeb12;hpb=a4e7b4c7ea392db794d6729cfeb792c445edcb06;p=perl%2Fmodules%2FVariable-Magic.git diff --git a/t/14-callbacks.t b/t/14-callbacks.t index c599b2f..77fdd00 100644 --- a/t/14-callbacks.t +++ b/t/14-callbacks.t @@ -5,7 +5,7 @@ use warnings; use Test::More tests => 17; -use Variable::Magic qw/wizard cast/; +use Variable::Magic qw; my $wiz = eval { wizard get => sub { undef } }; is($@, '', 'wizard creation doesn\'t croak'); @@ -59,20 +59,20 @@ cast $b, $wiz; my $u = $b; is_deeply(\@callers, [ - [ 'main', $0, __LINE__-2 ], + ([ 'main', $0, __LINE__-2 ]) x 2, ], 'caller into callback returns the right thing'); @callers = (); $u = $b; is_deeply(\@callers, [ - [ 'main', $0, __LINE__-2 ], + ([ 'main', $0, __LINE__-2 ]) x 2, ], 'caller into callback returns the right thing (second time)'); { @callers = (); my $u = $b; is_deeply(\@callers, [ - [ 'main', $0, __LINE__-2 ], + ([ 'main', $0, __LINE__-2 ]) x 2, ], 'caller into callback into block returns the right thing'); } @@ -80,6 +80,6 @@ is_deeply(\@callers, [ eval { my $u = $b }; is($@, '', 'caller into callback doesn\'t croak'); is_deeply(\@callers, [ - ([ 'main', $0, __LINE__-3 ]) x 2, + ([ 'main', $0, __LINE__-3 ]) x 3, ], 'caller into callback into eval returns the right thing');