Changeset 22009
- Timestamp:
- 08/22/08 16:28:34 (3 months ago)
- Files:
-
- 1 modified
-
t/spec/S02-literals/array-interpolation.t (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
t/spec/S02-literals/array-interpolation.t
r22008 r22009 17 17 is ~@array, "a b c d", 18 18 "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'; 23 22 is "@array", "@array", '@array (without brackets) doesnt interpolate'; 24 23 } … … 30 29 is ~@array, "a b c d e f g h", 31 30 "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)"; 34 33 } 35 34 … … 39 38 is ~@array, "a b c", 40 39 "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)"; 43 42 } 44 43 … … 48 47 is ~@array, "a\t b c", 49 48 "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)"; 52 51 } 53 52 … … 57 56 is ~@array, "a\t b c", 58 57 "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)"; 61 60 }
