]> git.vpit.fr Git - perl/modules/Scope-Upper.git/commitdiff
Correct some test descriptions
authorVincent Pit <vince@profvince.com>
Sun, 1 Mar 2009 10:56:57 +0000 (11:56 +0100)
committerVincent Pit <vince@profvince.com>
Sun, 1 Mar 2009 10:56:57 +0000 (11:56 +0100)
t/40-localize_delete-target.t

index 24597b7d036968030caeff7337cf707db0df637c..999fe9eb127bebf2ca8e3651f31a39c4c81e1757 100644 (file)
@@ -147,21 +147,21 @@ our %h;
 our $x = 1;
 {
  localize_delete '$x', 2 => HERE;
- is $x, undef, 'localize "$x", anything => HERE [ok]';
+ is $x, undef, 'localize_delete "$x", anything => HERE [ok]';
 }
-is $x, 1, 'localize "$x", anything => HERE [end]';
+is $x, 1, 'localize_delete "$x", anything => HERE [end]';
 
 sub x { 1 };
 {
  localize_delete '&x', 2 => HERE;
- ok !exists(&x), 'localize "&x", anything => HERE [ok]';
+ ok !exists(&x), 'localize_delete "&x", anything => HERE [ok]';
 }
-is x(), 1, 'localize "&x", anything => HERE [end]';
+is x(), 1, 'localize_delete "&x", anything => HERE [end]';
 
 {
  localize_delete *x, sub { } => HERE;
- is !exists(&x),  1, 'localize *x, anything => HERE [ok 1]';
- is !defined($x), 1, 'localize *x, anything => HERE [ok 2]';
+ is !exists(&x),  1, 'localize_delete *x, anything => HERE [ok 1]';
+ is !defined($x), 1, 'localize_delete *x, anything => HERE [ok 2]';
 }
-is x(), 1, 'localize *x, anything => HERE [end 1]';
-is $x,  1, 'localize *x, anything => HERE [end 2]';
+is x(), 1, 'localize_delete *x, anything => HERE [end 1]';
+is $x,  1, 'localize_delete *x, anything => HERE [end 2]';