X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F34-glob.t;h=58bcd72b4745c04ae103c243ec46008383bbbd80;hb=56d08a38a664736a762edf46817a346482c4004f;hp=a1ece33acdd86b7dd69727ef5acd30f6baa9132a;hpb=ad7c749baf8ebc2ff3e49d44b414f67f13f4ebf2;p=perl%2Fmodules%2FVariable-Magic.git diff --git a/t/34-glob.t b/t/34-glob.t index a1ece33..58bcd72 100644 --- a/t/34-glob.t +++ b/t/34-glob.t @@ -1,5 +1,8 @@ #!perl -T +use strict; +use warnings; + use Test::More; eval "use Symbol qw/gensym/"; @@ -11,11 +14,11 @@ if ($@) { use Variable::Magic qw/wizard cast dispell/; -my @c = (0) x 5; -my @x = (0) x 5; +my @c = (0) x 12; +my @x = (0) x 12; sub check { - for (0 .. 4) { return 0 unless $c[$_] == $x[$_]; } + for (0 .. 11) { return 0 unless $c[$_] == $x[$_]; } return 1; } @@ -24,7 +27,14 @@ my $wiz = wizard get => sub { ++$c[0] }, set => sub { ++$c[1] }, len => sub { ++$c[2] }, clear => sub { ++$c[3] }, - free => sub { ++$c[4] }; + free => sub { ++$c[4] }, + copy => sub { ++$c[5] }, + dup => sub { ++$c[6] }, + local => sub { ++$c[7] }, + fetch => sub { ++$c[8] }, + store => sub { ++$c[9] }, + 'exists' => sub { ++$c[10] }, + 'delete' => sub { ++$c[11] }; ok(check(), 'glob : create wizard'); local *a = gensym();