Changeset 22618 for t

Show
Ignore:
Timestamp:
10/15/08 09:36:46 (3 months ago)
Author:
moritz
Message:

[t/spec] unfudge three passing TODO tests

Location:
t/spec
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • t/spec/S02-builtin_data_types/array_extending.t

    r21036 r22618  
    1919    # @array shouldn't change. But currently, @array *is* automatically extended, 
    2020    # i.e. @array is ("a", "b", "c", "d", undef, undef, ...). This is wrong. 
    21     #?rakudo todo "array bug" 
    2221    is +@array, 4, 
    2322      "accessing a not existing array element should not automatically extend the array"; 
     
    4342    ok !$defined, 
    4443        'defined @array[$index_out_of_bounds] should be false'; 
    45     #?rakudo todo "array bug" 
    4644    is +@array, 4, 
    4745        'defined @array[$index_out_of_bounds] should not have altered @array'; 
  • t/spec/S03-operators/binding-arrays.t

    r22117 r22618  
    6464  $var      = "f"; 
    6565  @array[1] = "g"; 
    66   #?rakudo todo 'array binding' 
    6766  is $var,      "f", "binding of array elements works with resetting the array (4)"; 
    6867  is @array[1], "g", "binding of array elements works with resetting the array (5)";