Changeset 22459 for t

Show
Ignore:
Timestamp:
09/29/08 22:54:00 (2 months ago)
Author:
moritz
Message:

[t/spec] fudge assigning-refs.t for rakudo

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • t/spec/S02-builtin_data_types/assigning-refs.t

    r22458 r22459  
    3636  my %hash; 
    3737  try { %hash = ($hashref,) }; 
    38  
    39   is +%hash, 1, '%hash = ($hashref,) does not flatten the hashref', :todo<bug>; 
     38  
     39  #?rakudo todo 'non-flattening hash refs' 
     40  #?pugs todo 'non-flattening hash refs' 
     41  is +%hash, 1, '%hash = ($hashref,) does not flatten the hashref'; 
    4042} 
    4143 
     
    4446  my %hash    = ($hashref); 
    4547 
    46   is +%hash, 1, '%hash = ($hashref) does not flatten the hashref', :todo<bug>; 
     48  #?rakudo todo 'non-flattening hash refs' 
     49  #?pugs todo 'non-flattening hash refs' 
     50  is +%hash, 1, '%hash = ($hashref) does not flatten the hashref'; 
    4751} 
    4852 
     
    5155  my %hash    = $hashref; 
    5256 
    53   is +%hash, 1, '%hash = $hashref does not flatten the hashref', :todo<bug>; 
     57  #?rakudo todo 'non-flattening hash refs' 
     58  #?pugs todo 'non-flattening hash refs' 
     59  is +%hash, 1, '%hash = $hashref does not flatten the hashref'; 
    5460} 
    5561