Changeset 21197

Show
Ignore:
Timestamp:
07/03/08 22:51:51 (5 months ago)
Author:
moritz
Message:

[spec] while.t: cleaned up two useless tests

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • t/spec/S04-statements/while.t

    r20420 r21197  
    33use Test; 
    44 
    5 plan 10; 
     5plan 8; 
    66 
    77{ 
     
    5353      $str ~= $x; 
    5454  } 
    55   is $!, undef, 'eval worked'; 
    5655  is $str, '54321', 'while ... -> $x {...} worked (1)'; 
    5756} 
     
    6463      $str ~= $x; 
    6564  } 
    66   is $!, undef, 'eval worked'; 
    6765  is $str, '54321', 'while ... -> $x {...} worked (2)'; 
    6866}