]> git.vpit.fr Git - perl/modules/indirect.git/commitdiff
Test that the code compiled fine in t/30-scope.t
authorVincent Pit <vince@profvince.com>
Fri, 5 Dec 2008 18:56:17 +0000 (19:56 +0100)
committerVincent Pit <vince@profvince.com>
Fri, 5 Dec 2008 18:56:17 +0000 (19:56 +0100)
t/30-scope.t

index f2a785f38b2d1830c6c5eca061100ade95e919c5..0c5d9700082f96be8aaeacf0b8cdeb5ae96ebf64 100644 (file)
@@ -6,7 +6,7 @@ use warnings;
 my $tests;
 BEGIN { $tests = 8 }
 
-use Test::More tests => $tests + 1;
+use Test::More tests => $tests + 2;
 
 my %wrong = map { $_ => 1 } 2, 3, 5, 7;
 
@@ -16,6 +16,7 @@ my %wrong = map { $_ => 1 } 2, 3, 5, 7;
  {
   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 {