X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F20-bad.t;h=136b381934060d8ee22e550b8ac5f9af4a645aaa;hb=faed8ab9b402954feb3efbffbb1ce53aafd53fc1;hp=6c14518761826180e4167e5f8d62ab2f110b0136;hpb=3b965096935eb9216e70a0f6b8ab70d156fb371a;p=perl%2Fmodules%2Findirect.git diff --git a/t/20-bad.t b/t/20-bad.t index 6c14518..136b381 100644 --- a/t/20-bad.t +++ b/t/20-bad.t @@ -9,20 +9,24 @@ package main; use strict; use warnings; -use Test::More tests => 44 * 6 + 2; +use Test::More tests => 50 * 6 + 2; + +use feature 'state'; my ($obj, $x); our ($y, $bloop); +state $z; sub expect { my ($pkg) = @_; - return qr/^warn:Indirect call of method "(?:new|meh|$pkg$pkg)" on object "(?:$pkg|newnew|\$(?:[xy_]|(?:sploosh::)?sploosh|(?:main::)?bloop))"/ + return qr/^warn:Indirect call of method "(?:new|meh|$pkg$pkg)" on object "(?:$pkg|newnew|\$(?:[xyz_\$]|(?:sploosh::)?sploosh|(?:main::)?bloop))"/ } { local $/ = "####\n"; while () { chomp; + s/\s*$//; local $SIG{__WARN__} = sub { die 'warn:' . join(' ', @_) }; { use indirect; @@ -132,6 +136,10 @@ meh $_; #### meh $_ 1, 2; #### +meh $$; +#### +meh $$ 1, 2; +#### meh $x; #### meh $x 1, 2; @@ -144,6 +152,12 @@ meh $y 1, 2; #### meh $y, 1, 2; #### +meh $z; +#### +meh $z 1, 2; +#### +meh $z, 1, 2; +#### package sploosh; our $sploosh; meh $sploosh::sploosh; @@ -158,6 +172,9 @@ meh $main::bloop; package sploosh; meh $bloop; #### +package ma; +meh $bloop; +#### package sploosh; our $sploosh; package main;