]> git.vpit.fr Git - perl/modules/Scope-Upper.git/commitdiff
Complete with_at() coverage
authorVincent Pit <vince@profvince.com>
Sun, 11 Jan 2009 18:29:30 +0000 (19:29 +0100)
committerVincent Pit <vince@profvince.com>
Sun, 11 Jan 2009 18:29:30 +0000 (19:29 +0100)
t/06-want_at.t

index 7d29d24444bbc57d523f0e754617a4f975190683..afd36bdb336c416d4e8c6239a1505c57c01525bf 100644 (file)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 16;
+use Test::More tests => 19;
 
 use Scope::Upper qw/want_at/;
 
@@ -39,6 +39,11 @@ my @a = sub {
    check want_at(1), 1, 'for : want_at(1)';
    check want_at(2), 1, 'for : want_at(2)';
   }
+  eval "
+   check want_at,    undef, 'eval string : want_at';
+   check want_at(1), 1,     'eval string : want_at(1)';
+   check want_at(2), 1,     'eval string : want_at(2)';
+  ";
   my $x = eval {
    do {
     check want_at,    0, 'do : want_at';