X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F40-localize_delete-target.t;h=b51c28b5b9339ea232d78da34aefac863d903006;hb=refs%2Ftags%2Frt55593;hp=999fe9eb127bebf2ca8e3651f31a39c4c81e1757;hpb=3ccbf65d886255fab86d078e7807d78c576290f3;p=perl%2Fmodules%2FScope-Upper.git diff --git a/t/40-localize_delete-target.t b/t/40-localize_delete-target.t index 999fe9e..b51c28b 100644 --- a/t/40-localize_delete-target.t +++ b/t/40-localize_delete-target.t @@ -3,7 +3,7 @@ use strict; use warnings; -use Test::More tests => 36; +use Test::More tests => 44; use Scope::Upper qw/localize_delete UP HERE/; @@ -107,6 +107,16 @@ our @a; is_deeply \@a, [ 4 .. 6 ], 'localize_delete "@a", 4 (exists) => UP [end]'; } +{ + { + localize_delete '@nonexistent', 2; + is_deeply eval('*nonexistent{ARRAY}'), [ ], + 'localize_delete "@nonexistent", anything => HERE [ok]'; + } + is_deeply eval('*nonexistent{ARRAY}'), [ ], + 'localize_delete "@nonexistent", anything => HERE [end]'; +} + # Hashes our %h; @@ -142,6 +152,16 @@ our %h; is_deeply \%h, { a => 1, b => 2 }, 'localize_delete "%h", "a" => UP [end]'; } +{ + { + localize_delete '%nonexistent', 'a'; + is_deeply eval('*nonexistent{HASH}'), { }, + 'localize_delete "%nonexistent", anything => HERE [ok]'; + } + is_deeply eval('*nonexistent{HASH}'), { }, + 'localize_delete "%nonexistent", anything => HERE [end]'; +} + # Others our $x = 1; @@ -151,6 +171,16 @@ our $x = 1; } is $x, 1, 'localize_delete "$x", anything => HERE [end]'; +{ + { + localize_delete '$nonexistent', 2; + is eval('${*nonexistent{SCALAR}}'), undef, + 'localize_delete "$nonexistent", anything => HERE [ok]'; + } + is eval('${*nonexistent{SCALAR}}'), undef, + 'localize_delete "$nonexistent", anything => HERE [end]'; +} + sub x { 1 }; { localize_delete '&x', 2 => HERE; @@ -158,6 +188,16 @@ sub x { 1 }; } is x(), 1, 'localize_delete "&x", anything => HERE [end]'; +{ + { + localize_delete '&nonexistent', 2; + is eval('exists &nonexistent'), !1, + 'localize_delete "&nonexistent", anything => HERE [ok]'; + } + is eval('exists &nonexistent'), !1, + 'localize_delete "&nonexistent", anything => HERE [end]'; +} + { localize_delete *x, sub { } => HERE; is !exists(&x), 1, 'localize_delete *x, anything => HERE [ok 1]';