Changeset 22009

Show
Ignore:
Timestamp:
08/22/08 16:28:34 (3 months ago)
Author:
moritz
Message:

[spec] fudged array-interpolation.t for rakudo.
Sadly I also had to join some lines, because fudge doesn't work with multi
line test statements

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • t/spec/S02-literals/array-interpolation.t

    r22008 r22009  
    1717  is ~@array, "a b c d", 
    1818    "arrays whose elements don't contain whitespace stringify correctly (1)"; 
    19   is "@array[]", "a b c d", 
    20     "arrays whose elements don't contain whitespace stringify correctly (2)"; 
    21   is "@array.[]", "a b c d", 
    22     '@array.[] interpolates'; 
     19  #?rakudo 2 todo 'Array interpolation b0rked' 
     20  is "@array[]", "a b c d", "arrays whose elements don't contain whitespace stringify correctly (2)"; 
     21  is "@array.[]", "a b c d", '@array.[] interpolates'; 
    2322  is "@array", "@array", '@array (without brackets) doesnt interpolate'; 
    2423} 
     
    3029  is ~@array, "a b c d e f g h", 
    3130    "arrays with embedded array references stringify correctly (1)"; 
    32   is "@array[]", "a b c d e f g h", 
    33     "arrays with embedded array references stringify correctly (2)"; 
     31  #?rakudo todo 'Array interpolation b0rked' 
     32  is "@array[]", "a b c d e f g h", "arrays with embedded array references stringify correctly (2)"; 
    3433} 
    3534 
     
    3938  is ~@array, "a b  c", 
    4039    "array whose elements do contain whitespace stringify correctly (1-1)"; 
    41   is "@array[]", "a b  c", 
    42     "array whose elements do contain whitespace stringify correctly (1-2)"; 
     40  #?rakudo todo 'Array interpolation b0rked' 
     41  is "@array[]", "a b  c", "array whose elements do contain whitespace stringify correctly (1-2)"; 
    4342} 
    4443 
     
    4847  is ~@array, "a\t b  c", 
    4948    "array whose elements do contain whitespace stringify correctly (2-1)"; 
    50   is "@array[]", "a\t b  c", 
    51     "array whose elements do contain whitespace stringify correctly (2-2)"; 
     49  #?rakudo todo 'Array interpolation b0rked' 
     50  is "@array[]", "a\t b  c", "array whose elements do contain whitespace stringify correctly (2-2)"; 
    5251} 
    5352 
     
    5756  is ~@array, "a\t  b  c", 
    5857    "array whose elements do contain whitespace stringify correctly (3-1)"; 
    59   is "@array[]", "a\t  b  c", 
    60     "array whose elements do contain whitespace stringify correctly (3-2)"; 
     58  #?rakudo todo 'Array interpolation b0rked' 
     59  is "@array[]", "a\t  b  c", "array whose elements do contain whitespace stringify correctly (3-2)"; 
    6160}