]> git.vpit.fr Git - perl/modules/Variable-Magic.git/commitdiff
Test L:{last L} in t/18-opinfo.t
authorVincent Pit <vince@profvince.com>
Mon, 2 Mar 2009 16:31:03 +0000 (17:31 +0100)
committerVincent Pit <vince@profvince.com>
Mon, 2 Mar 2009 16:31:03 +0000 (17:31 +0100)
t/18-opinfo.t

index 843e60efee9ea4902bd01638530739575a1789e0..c03c3de6b33b88af50906c8ca40e526376d881a4 100644 (file)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 13 * (3 + 4) + 5;
+use Test::More tests => 14 * (3 + 4) + 5;
 
 use Config qw/%Config/;
 
@@ -33,6 +33,7 @@ my @tests = (
  [ 'get', '$c',    'my $c = 1', '1 for 1 .. $c',
                                                  [ 'enteriter', 'B::LOOP'   ] ],
  [ 'free','$c',    'my $c = 1', 'last',            [ 'last',    'B::OP'     ] ],
+ [ 'free','$c', 'L:{my $c = 1', 'last L}',         [ 'last',    'B::OP'     ] ],
 );
 
 our $done;