X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FVariable-Magic.git;a=blobdiff_plain;f=t%2F18-opinfo.t;h=aed437a41e5b6b00e372835e217cc1c3fb7722ac;hp=0293c645016b41a3124c047753b83063afc47cea;hb=47305776af757964b20c9739d4d44ad35a3dfb90;hpb=2ccccc5e7ea3f299777e0b67db864a1ea60688a6 diff --git a/t/18-opinfo.t b/t/18-opinfo.t index 0293c64..aed437a 100644 --- a/t/18-opinfo.t +++ b/t/18-opinfo.t @@ -50,10 +50,13 @@ my @tests = ( our $done; +my $OP_INFO_NAME = VMG_OP_INFO_NAME; +my $OP_INFO_OBJECT = VMG_OP_INFO_OBJECT; + for (@tests) { my ($key, $var, $init, $test, $exp) = @$_; - for my $op_info (VMG_OP_INFO_NAME, VMG_OP_INFO_OBJECT) { + for my $op_info ($OP_INFO_NAME, $OP_INFO_OBJECT) { my $wiz; # We must test for the $op correctness inside the callback because, if we @@ -64,9 +67,9 @@ for (@tests) { return if $done; my $op = $_[-1]; my $desc = "$key magic with op_info == $op_info"; - if ($op_info == VMG_OP_INFO_NAME) { + if ($op_info == $OP_INFO_NAME) { is $op, $exp->[0], "$desc gets the right op info"; - } elsif ($op_info == VMG_OP_INFO_OBJECT) { + } elsif ($op_info == $OP_INFO_OBJECT) { isa_ok $op, $exp->[1], $desc; is $op->name, $exp->[0], "$desc gets the right op info"; } else {