From: Vincent Pit Date: Fri, 5 Dec 2008 19:17:35 +0000 (+0100) Subject: Test if the pragma propagates through eval string X-Git-Tag: v0.09~4 X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Findirect.git;a=commitdiff_plain;h=d8064d5f5037d23c51e6e62386f32e65cef50d33 Test if the pragma propagates through eval string --- diff --git a/t/30-scope.t b/t/30-scope.t index 0c5d970..19e29df 100644 --- a/t/30-scope.t +++ b/t/30-scope.t @@ -6,10 +6,15 @@ use warnings; my $tests; BEGIN { $tests = 8 } -use Test::More tests => $tests + 2; +use Test::More tests => 1 + $tests + 1 + 2; my %wrong = map { $_ => 1 } 2, 3, 5, 7; +sub expect { + my ($pkg) = @_; + return qr/^warn:Indirect\s+call\s+of\s+method\s+"new"\s+on\s+object\s+"$pkg"/; +} + { my $code = do { local $/; }; my @warns; @@ -29,7 +34,7 @@ my %wrong = map { $_ => 1 } 2, 3, 5, 7; for (1 .. $tests) { my $w = $res{$_}; if ($wrong{$_}) { - like($w, qr/^warn:Indirect\s+call\s+of\s+method\s+"new"\s+on\s+object\s+"P$_"/, "$_ should warn"); + like($w, expect("P$_"), "$_ should warn"); } else { is($w, undef, "$_ shouldn't warn"); } @@ -37,6 +42,30 @@ my %wrong = map { $_ => 1 } 2, 3, 5, 7; is($left, 0, 'nothing left'); } +{ + my $w; + local $SIG{__WARN__} = sub { + $w = 'more than 2 warnings' if $w; + $w = join '', 'warn:', @_ + }; + { + eval 'no indirect; my $x = new Foo'; + like($w, expect('Foo'), "eval 'no indirect; my \$x = new Foo'"); + } + $w = ''; + { + { + no indirect; + eval 'my $x = new Bar'; + } + if ($] < 5.010) { + is($w, '', "eval 'no indirect; my \$x = new Bar'"); + } else { + like($w, expect('Bar'), "no indirect; eval 'my \$x = new Bar'"); + } + } +} + __DATA__ my $a = new P1;