X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F30-scope.t;h=19e29df2e520c30e3df66c29d5c1df2ca74f4238;hb=d8064d5f5037d23c51e6e62386f32e65cef50d33;hp=f2a785f38b2d1830c6c5eca061100ade95e919c5;hpb=7ded1e91a0a0ddc3e709cda9573fe0e53a32e092;p=perl%2Fmodules%2Findirect.git diff --git a/t/30-scope.t b/t/30-scope.t index f2a785f..19e29df 100644 --- a/t/30-scope.t +++ b/t/30-scope.t @@ -6,16 +6,22 @@ use warnings; my $tests; BEGIN { $tests = 8 } -use Test::More tests => $tests + 1; +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; { local $SIG{__WARN__} = sub { push @warns, join '', 'warn:', @_ }; eval "die qq{ok\\n}; $code"; + is($@, "ok\n", 'DATA compiled fine'); } my $left = 0; my %res = map { @@ -28,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"); } @@ -36,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;