X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F34-glob.t;h=bbfbeeedff7ffb4de870d1910e7006857a4b6598;hb=2d69d033c7c2942a94751972e9f482de7c3482be;hp=664152da32bc9233af63939c10c6bd99e2df27fd;hpb=da422089a9a5dfbf84e72ec3ba867063471ff41c;p=perl%2Fmodules%2FVariable-Magic.git diff --git a/t/34-glob.t b/t/34-glob.t index 664152d..bbfbeee 100644 --- a/t/34-glob.t +++ b/t/34-glob.t @@ -9,11 +9,13 @@ eval "use Symbol qw/gensym/"; if ($@) { plan skip_all => "Symbol::gensym required for testing magic for globs"; } else { - plan tests => 2 * 8 + 1; - diag "Using Symbol $Symbol::VERSION" if defined $Symbol::VERSION; + plan tests => 2 * 12 + 1; + defined and diag "Using Symbol $_" for $Symbol::VERSION; } -use Variable::Magic qw/cast dispell/; +use Variable::Magic qw/cast dispell VMG_COMPAT_GLOB_GET/; + +my %get = VMG_COMPAT_GLOB_GET ? (get => 1) : (); use lib 't/lib'; use Variable::Magic::TestWatcher; @@ -24,17 +26,24 @@ my $wiz = init_watcher local *a = gensym(); -watch { cast *a, $wiz } { }, 'cast'; +watch { cast *a, $wiz } +{ }, 'cast'; + +watch { local *b = *a } +{ %get }, 'assign to'; -watch { local *b = *a } { }, 'assign to'; +watch { *a = \1 } +{ %get, set => 1 }, 'assign scalar slot'; +watch { *a = [ qw/x y/ ] } +{ %get, set => 1 }, 'assign array slot'; +watch { *a = { u => 1 } } +{ %get, set => 1 }, 'assign hash slot'; +watch { *a = sub { } } +{ %get, set => 1 }, 'assign code slot'; -watch { *a = gensym() } { set => 1 }, 'assign'; +watch { *a = gensym() } +{ %get, set => 1 }, 'assign glob'; watch { local *b = gensym(); - watch { cast *b, $wiz } { }, 'cast 2'; -} { }, 'scope end'; + watch { cast *b, $wiz } +{ }, 'cast 2'; +} +{ }, 'scope end'; + +%get = () if $] >= 5.013007; -watch { undef *a } { }, 'undef'; +watch { undef *a } +{ %get }, 'undef'; -watch { dispell *a, $wiz } { }, 'dispell'; +watch { dispell *a, $wiz } +{ %get }, 'dispell';