X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FLexical-Types.git;a=blobdiff_plain;f=t%2F16-scope.t;h=9e858dcfee4500d8e8b5f25d0047d913640b7b40;hp=6d78ec1a3615529457de06dc92f0a6664d0e7d34;hb=61f64dfa5fa4f435e6cd854d22e4325ef1eb0068;hpb=158a53a77c240a1fed59318ecacb5bb20eb11f1d diff --git a/t/16-scope.t b/t/16-scope.t index 6d78ec1..9e858dc 100644 --- a/t/16-scope.t +++ b/t/16-scope.t @@ -26,7 +26,7 @@ use lib 't/lib'; sub cb3 { push @decls, $_[0]; @_ } { no strict 'refs'; - *{"Int3$_\::TYPEDSCALAR"} = \&Int::TYPEDSCALAR for qw/X Y Z/; + *{"Int3$_\::TYPEDSCALAR"} = \&Int::TYPEDSCALAR for qw; } local $SIG{__WARN__} = sub { push @w, join '', 'warn:', @_ }; eval <<' TESTREQUIRED3'; @@ -39,9 +39,9 @@ use lib 't/lib'; ::is($z, __FILE__.':6', 'pragma in use at the end'); } TESTREQUIRED3 - @w = grep !/^warn:Attempt\s+to\s+free\s+unreferenced/, @w if $] <= 5.008003; + @w = grep !/^warn:Attempt\s+to\s+free\s+unreferenced/, @w if "$]" <= 5.008003; is $@, '', 'third require test didn\'t croak prematurely'; is_deeply \@w, [ ], 'third require test didn\'t warn'; - is_deeply \@decls, [ map "Int3$_", qw/X Z/ ], + is_deeply \@decls, [ map "Int3$_", qw ], 'third require test propagated in the right scopes'; }