]> git.vpit.fr Git - perl/modules/Scope-Upper.git/commitdiff
Introduce *5-*-multi.t tests
authorVincent Pit <vince@profvince.com>
Fri, 9 Jan 2009 18:09:55 +0000 (19:09 +0100)
committerVincent Pit <vince@profvince.com>
Fri, 9 Jan 2009 18:09:55 +0000 (19:09 +0100)
MANIFEST
t/15-reap-multi.t [moved from t/10-reap.t with 82% similarity]
t/25-localize-multi.t [moved from t/20-localize.t with 66% similarity]

index 9bbce5db9087af14735717de04dd3b21c970dce2..f18a425001a0b0673e7cb2d47aaabe83d61dc904 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -8,15 +8,15 @@ samples/tag.pl
 t/00-load.t
 t/01-import.t
 t/05-words.t
-t/10-reap.t
 t/11-reap-level.t
 t/12-reap-block.t
 t/13-reap-ctl.t
+t/15-reap-multi.t
 t/20-localize-target.t
-t/20-localize.t
 t/21-localize-level.t
 t/22-localize-block.t
 t/23-localize-ctl.t
+t/25-localize-multi.t
 t/30-localize_elem-target.t
 t/31-localize_elem-level.t
 t/32-localize_elem-block.t
similarity index 82%
rename from t/10-reap.t
rename to t/15-reap-multi.t
index 11919dd73f453aa78937095f3b7c7824ac590f77..a3f7f3ce8d5c37db7d33b8bdd16aca13a931ed9a 100644 (file)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 4 + 8 + 8 + 18 + 4 + 8 + 6 + 11 + 5 + 17;
+use Test::More tests => 8 + 18 + 4 + 8 + 11 + 5 + 17;
 
 use Scope::Upper qw/reap/;
 
@@ -11,34 +11,6 @@ my $x;
 
 sub add { local $_; my $y = $_[1]; reap sub { $x += $y }, $_[0] + 1 }
 
-$x = 0;
-{
- is($x, 0, 'start');
- {
-  add(0, 1);
-  is($x, 0, '1 didn\'t run');
- }
- is($x, 1, '1 ran');
-}
-is($x, 1, 'end');
-
-$x = 0;
-{
- is($x, 0, 'start');
- local $_ = 3;
- is($_, 3, '$_ has the right value');
- {
-  add(0, 1);
-  is($_, 3, '$_ has the right value');
-  local $_ = 7;
-  is($_, 7, '$_ has the right value');
-  is($x, 0, '1 didn\'t run');
- }
- is($x, 1, '1 ran');
- is($_, 3, '$_ has the right value');
-}
-is($x, 1, 'end');
-
 $x = 0;
 {
  is($x, 0, 'start');
@@ -128,23 +100,6 @@ $x = 0;
 }
 is($x, 3, 'end');
 
-$x = 0;
-{
- is($x, 0, 'start');
- {
-  {
-   {
-    add(2, 1);
-    is($x, 0, '1 didn\'t run');
-   }
-   is($x, 0, '1 didn\'t run');
-  }
-  is($x, 0, '1 didn\'t run');
- }
- is($x, 1, '1 ran');
-}
-is($x, 1, 'end');
-
 $x = 0;
 {
  is($x, 0, 'start');
similarity index 66%
rename from t/20-localize.t
rename to t/25-localize-multi.t
index 35a22c6406e57e5b3e85060a23e63dc67438462e..f205e75c9902e5258459d00611384b22be18f237 100644 (file)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 4 + 10 + 6 + 5 + 6;
+use Test::More tests => 10 + 5 + 6;
 
 use Scope::Upper qw/localize/;
 
@@ -11,19 +11,6 @@ our $x;
 
 sub loc { local $x; my $y = $_[1]; localize '$x', $y, $_[0] + 1 }
 
-$x = 0;
-{
- is($x, 0, 'start');
- local $x = 7;
- {
-  local $x = 8;
-  loc(0, 1);
-  is($x, 1, 'localized to 1');
- }
- is($x, 7, 'no longer localized');
-}
-is($x, 0, 'end');
-
 $x = 0;
 {
  is($x, 0, 'start');
@@ -49,27 +36,6 @@ $x = 0;
 }
 is($x, 0, 'end');
 
-$x = 0;
-{
- is($x, 0, 'start');
- local $x = 7;
- {
-  local $x = 8;
-  {
-   local $x = 9;
-   {
-    local $x = 10;
-    loc(2, 1);
-    is($x, 10, 'not localized');
-   }
-   is($x, 9, 'not localized');
-  }
-  is($x, 1, 'localized to 1');
- }
- is($x, 7, 'no longer localized');
-}
-is($x, 0, 'end');
-
 $x = 0;
 {
  is($x, 0, 'start');