]> git.vpit.fr Git - perl/modules/indirect.git/commitdiff
Test if the pragma propagates through eval string
authorVincent Pit <vince@profvince.com>
Fri, 5 Dec 2008 19:17:35 +0000 (20:17 +0100)
committerVincent Pit <vince@profvince.com>
Fri, 5 Dec 2008 19:17:35 +0000 (20:17 +0100)
t/30-scope.t

index 0c5d9700082f96be8aaeacf0b8cdeb5ae96ebf64..19e29df2e520c30e3df66c29d5c1df2ca74f4238 100644 (file)
@@ -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 $/; <DATA> };
  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;