X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F30-scalar.t;h=4189ee5dfab5491f4653232442c1f7eccf7ef6e2;hb=78d307d30a1fa82e6b8e7ba95c617d9b87eb4d45;hp=ab20ed6450dc5f3e2406232011fe47a1d6837d12;hpb=e5e39f5e8bec67b3a08f861da63c5eb4cafed09f;p=perl%2Fmodules%2FVariable-Magic.git diff --git a/t/30-scalar.t b/t/30-scalar.t index ab20ed6..4189ee5 100644 --- a/t/30-scalar.t +++ b/t/30-scalar.t @@ -3,19 +3,19 @@ use strict; use warnings; -use Config qw/%Config/; +use Config qw<%Config>; -use Test::More tests => (2 * 14 + 2) + 2 * (2 * 8 + 4) + 3 + 1; +use Test::More tests => (2 * 14 + 2) + 2 * (2 * 8 + 4) + 5 + 1; -use Variable::Magic qw/wizard cast dispell MGf_COPY/; +use Variable::Magic qw; use lib 't/lib'; use Variable::Magic::TestWatcher; -my $is_5130_release = ($] == 5.013 && !$Config{git_describe}) ? 1 : 0; +my $is_5130_release = ("$]" == 5.013 && !$Config{git_describe}) ? 1 : 0; my $wiz = init_watcher - [ qw/get set len clear free copy dup local fetch store exists delete/ ], + [ qw ], 'scalar'; my $n = int rand 1000; @@ -33,15 +33,15 @@ is $b, "X${n}Y", 'scalar: interpolate correctly'; $b = watch { \$a } { }, 'reference'; -watch { $a = 123; () } { set => 1 }, 'assign to'; +watch { $a = 123 } { set => 1 }, 'assign to'; -watch { ++$a; () } { get => 1, set => 1 }, 'increment'; +watch { ++$a } { get => 1, set => 1 }, 'increment'; -watch { --$a; () } { get => 1, set => 1 }, 'decrement'; +watch { --$a } { get => 1, set => 1 }, 'decrement'; -watch { $a *= 1.5; () } { get => 1, set => 1 }, 'multiply in place'; +watch { $a *= 1.5 } { get => 1, set => 1 }, 'multiply in place'; -watch { $a /= 1.5; () } { get => 1, set => 1 }, 'divide in place'; +watch { $a /= 1.5 } { get => 1, set => 1 }, 'divide in place'; watch { my $b = $n; @@ -58,7 +58,7 @@ my @a = (7, 8, 9); watch { cast $a[1], $wiz } { }, 'array element: cast'; -watch { $a[1] = 6; () } { set => 1 }, 'array element: set'; +watch { $a[1] = 6 } { set => 1 }, 'array element: set'; $b = watch { $a[1] } { get => ($is_5130_release ? 2 : 1) },'array element: get'; is $b, 6, 'scalar: array element: get correctly'; @@ -72,7 +72,8 @@ $b = watch { exists $a[1] } { }, 'array element: exists'; is $b, 1, 'scalar: array element: exists correctly'; # $b has to be set inside the block for the test to pass on 5.8.3 and lower -watch { $b = delete $a[1] } { get => 1, free => ($] > 5.008005 ? 1 : 0) }, 'array element: delete'; +watch { $b = delete $a[1] } { get => 1, free => ("$]" > 5.008_005 ? 1 : 0) }, + 'array element: delete'; is $b, 6, 'scalar: array element: delete correctly'; watch { $a[1] = 4 } { }, 'array element: set after delete'; @@ -83,7 +84,7 @@ my %h = (a => 7, b => 8); watch { cast $h{b}, $wiz } { }, 'hash element: cast'; -watch { $h{b} = 6; () } { set => 1 }, 'hash element: set'; +watch { $h{b} = 6 } { set => 1 }, 'hash element: set'; $b = watch { $h{b} } { get => ($is_5130_release ? 2 : 1) }, 'hash element: get'; is $b, 6, 'scalar: hash element: get correctly'; @@ -102,25 +103,23 @@ is $b, 6, 'scalar: hash element: delete correctly'; watch { $h{b} = 4 } { }, 'hash element: set after delete'; SKIP: { - my $SKIP; - - unless (MGf_COPY) { - $SKIP = 'No copy magic for this perl'; - } else { - eval "use Tie::Array"; - $SKIP = 'Tie::Array required to test clear magic on tied array values' if $@; + unless (do { local $@; eval { require Tie::Array; 1 } }) { + skip 'Tie::Array required to test clear magic on tied array values' => 5; } - - skip $SKIP => 3 if $SKIP; defined and diag "Using Tie::Array $_" for $Tie::Array::VERSION; tie my @a, 'Tie::StdArray'; $a[0] = $$; + $a[1] = -$$; eval { cast @a, wizard copy => sub { cast $_[3], $wiz; () }; }; is $@, '', 'cast copy magic on tied array'; - watch { delete $a[0] } [ qw/get clear free/ ], 'delete from tied array'; + watch { delete $a[0] } [ qw ], + 'delete from tied array in void context'; + + $b = watch { delete $a[1] } [ qw ], + 'delete from tied array in scalar context'; }