X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F16-huf.t;h=0934219579ca9613d9955ceda412f0967ace69c0;hb=2d69d033c7c2942a94751972e9f482de7c3482be;hp=08ca8d413a6a059122b9791ac140b898d677ea51;hpb=ae7f6e2ea2193f2a2fd33dd76aa9cdfdb82a9743;p=perl%2Fmodules%2FVariable-Magic.git diff --git a/t/16-huf.t b/t/16-huf.t index 08ca8d4..0934219 100644 --- a/t/16-huf.t +++ b/t/16-huf.t @@ -16,14 +16,14 @@ if ($@) { plan skip_all => 'Hash::Util::FieldHash required for testing uvar interaction'; } else { plan tests => 2 * 5 + 7 + 1; - my $v = $Hash::Util::FieldHash::VERSION; - diag "Using Hash::Util::FieldHash $v" if defined $v; + defined and diag "Using Hash::Util::FieldHash $_" + for $Hash::Util::FieldHash::VERSION; } use lib 't/lib'; use Variable::Magic::TestWatcher; -my $wiz = init [ qw/fetch store/ ], 'huf'; +my $wiz = init_watcher [ qw/fetch store/ ], 'huf'; ok defined($wiz), 'huf: wizard with uvar is defined'; is ref($wiz), 'SCALAR', 'huf: wizard with uvar is a scalar ref'; @@ -33,16 +33,16 @@ my $obj = { }; bless $obj, 'Variable::Magic::Test::Mock'; $h{$obj} = 5; -my ($res) = check { cast %h, $wiz } { }, 'cast uvar magic on fieldhash'; +my ($res) = watch { cast %h, $wiz } { }, 'cast uvar magic on fieldhash'; ok $res, 'huf: cast uvar magic on fieldhash succeeded'; -my ($s) = check { $h{$obj} } { fetch => 1 }, 'fetch on magical fieldhash'; +my ($s) = watch { $h{$obj} } { fetch => 1 }, 'fetch on magical fieldhash'; is $s, 5, 'huf: fetch on magical fieldhash succeeded'; -check { $h{$obj} = 7 } { store => 1 }, 'store on magical fieldhash'; +watch { $h{$obj} = 7 } { store => 1 }, 'store on magical fieldhash'; is $h{$obj}, 7, 'huf: store on magical fieldhash succeeded'; -($res) = check { dispell %h, $wiz } { }, 'dispell uvar magic on fieldhash'; +($res) = watch { dispell %h, $wiz } { }, 'dispell uvar magic on fieldhash'; ok $res, 'huf: dispell uvar magic on fieldhash succeeded'; $h{$obj} = 11;