]> git.vpit.fr Git - perl/modules/Variable-Magic.git/blobdiff - t/34-glob.t
Importing Variable-Magic-0.14.tar.gz
[perl/modules/Variable-Magic.git] / t / 34-glob.t
index 58bcd72b4745c04ae103c243ec46008383bbbd80..d5d62d81b8d1d02628c3de6c90c3773c8254f514 100644 (file)
@@ -10,6 +10,7 @@ if ($@) {
  plan skip_all => "Symbol::gensym required for testing magic for globs";
 } else {
  plan tests => 7;
+ diag "Using Symbol $Symbol::VERSION" if defined $Symbol::VERSION;
 }
 
 use Variable::Magic qw/wizard cast dispell/;
@@ -18,8 +19,9 @@ my @c = (0) x 12;
 my @x = (0) x 12;
 
 sub check {
- for (0 .. 11) { return 0 unless $c[$_] == $x[$_]; }
- return 1;
+ is join(':', map { (defined) ? $_ : 'u' } @c[0 .. 11]),
+    join(':', map { (defined) ? $_ : 'u' } @x[0 .. 11]),
+    $_[0];
 }
 
 my $i = -1;
@@ -35,28 +37,28 @@ my $wiz = wizard get   => sub { ++$c[0] },
                  store => sub { ++$c[9] },
                  'exists' => sub { ++$c[10] },
                  'delete' => sub { ++$c[11] };
-ok(check(), 'glob : create wizard');
+check('glob : create wizard');
 
 local *a = gensym();
 
 cast *a, $wiz;
-ok(check(), 'glob : cast');
+check('glob : cast');
 
 local *b = *a;
-ok(check(), 'glob : assign to');
+check('glob : assign to');
 
 *a = gensym();
 ++$x[1];
-ok(check(), 'glob : assign');
+check('glob : assign');
 
 {
  local *b = gensym();
  cast *b, $wiz;
 }
-ok(check(), 'glob : scope end');
+check('glob : scope end');
 
 undef *a;
-ok(check(), 'glob : undef');
+check('glob : undef');
 
 dispell *a, $wiz;
-ok(check(), 'glob : dispell');
+check('glob : dispell');