X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F14-callbacks.t;h=c599b2fe7dc69bf6c027408e4f488e598e7eeb12;hb=2975abf490c4cfe24e0230f1b050e4d95d3d9b25;hp=3cc6d934db007be28ea6127022e95d73ae9efab9;hpb=b1c000770cd87f795f7d0873d82ea72d3d1601bd;p=perl%2Fmodules%2FVariable-Magic.git diff --git a/t/14-callbacks.t b/t/14-callbacks.t index 3cc6d93..c599b2f 100644 --- a/t/14-callbacks.t +++ b/t/14-callbacks.t @@ -3,7 +3,7 @@ use strict; use warnings; -use Test::More tests => 12; +use Test::More tests => 17; use Variable::Magic qw/wizard cast/; @@ -27,6 +27,24 @@ eval { is($@, '', 'callback returning undef doesn\'t warn/croak'); is($x, $n, 'callback returning undef fails'); +{ + my $c = 0; + sub X::wat { ++$c } + my $wiz = eval { wizard get => \'X::wat' }; + is($@, '', 'wizard with a string callback doesn\'t croak'); + my $b = $n; + my $res = eval { cast $b, $wiz }; + is($@, '', 'cast a wizard with a string callback doesn\'t croak'); + my $x; + eval { + local $SIG{__WARN__} = sub { die }; + $x = $b; + }; + is($@, '', 'string callback doesn\'t warn/croak'); + is($c, 1, 'string callback is called'); + is($x, $n, 'string callback returns the right thing'); +} + my @callers; $wiz = wizard get => sub { my @c; @@ -54,7 +72,7 @@ is_deeply(\@callers, [ @callers = (); my $u = $b; is_deeply(\@callers, [ - [ 'main', $0, __LINE__-2 ] + [ 'main', $0, __LINE__-2 ], ], 'caller into callback into block returns the right thing'); } @@ -62,6 +80,6 @@ is_deeply(\@callers, [ eval { my $u = $b }; is($@, '', 'caller into callback doesn\'t croak'); is_deeply(\@callers, [ - [ 'main', $0, __LINE__-3 ], - [ 'main', $0, __LINE__-4 ], + ([ 'main', $0, __LINE__-3 ]) x 2, ], 'caller into callback into eval returns the right thing'); +