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

index 19e29df2e520c30e3df66c29d5c1df2ca74f4238..414c9c759bcbb4d304104e7522d3d7ece4bc9a47 100644 (file)
@@ -4,11 +4,11 @@ use strict;
 use warnings;
 
 my $tests;
-BEGIN { $tests = 8 }
+BEGIN { $tests = 10 }
 
 use Test::More tests => 1 + $tests + 1 + 2;
 
-my %wrong = map { $_ => 1 } 2, 3, 5, 7;
+my %wrong = map { $_ => 1 } 2, 3, 5, 7, 9, 10;
 
 sub expect {
  my ($pkg) = @_;
@@ -91,3 +91,10 @@ my $g = new P7;
 use indirect;
 
 my $h = new P8;
+
+{
+ no indirect;
+ eval { my $i = new P9 };
+}
+
+eval { no indirect; my $j = new P10 };