]> git.vpit.fr Git - perl/modules/Variable-Magic.git/blobdiff - t/34-glob.t
Add more glob tests
[perl/modules/Variable-Magic.git] / t / 34-glob.t
index 47e68926b4e04256c0b13741c77bc4ea3f07674b..a6f26375ba343bf662b426bb0a19cd7f75c85b29 100644 (file)
@@ -9,32 +9,39 @@ eval "use Symbol qw/gensym/";
 if ($@) {
  plan skip_all => "Symbol::gensym required for testing magic for globs";
 } else {
- plan tests => 2 * 8 + 1;
+ plan tests => 2 * 12 + 1;
  diag "Using Symbol $Symbol::VERSION" if defined $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;
 
-my $wiz = init
+my $wiz = init_watcher
         [ qw/get set len clear free copy dup local fetch store exists delete/ ],
         'glob';
 
 local *a = gensym();
 
-check { cast *a, $wiz } { }, 'cast';
+watch { cast *a, $wiz } +{ }, 'cast';
+
+watch { local *b = *a } +{ %get }, 'assign to';
 
-check { 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';
 
-check { *a = gensym() } { set => 1 }, 'assign';
+watch { *a = gensym() }    +{ %get, set => 1 }, 'assign glob';
 
-check {
+watch {
  local *b = gensym();
check { cast *b, $wiz } { }, 'cast 2';
-} { }, 'scope end';
watch { cast *b, $wiz } +{ }, 'cast 2';
+} +{ }, 'scope end';
 
-check { undef *a } { }, 'undef';
+watch { undef *a } +{ %get }, 'undef';
 
-check { dispell *a, $wiz } { }, 'dispell';
+watch { dispell *a, $wiz } +{ %get }, 'dispell';