Changeset 22011
- Timestamp:
- 08/22/08 16:34:39 (3 months ago)
- Files:
-
- 1 modified
-
t/spec/S02-literals/hash-interpolation.t (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
t/spec/S02-literals/hash-interpolation.t
r22010 r22011 5 5 plan 7; 6 6 7 #?rakudo todo 'Hash interpolation with %hash<literal>' 7 8 { 8 9 my %hash = (a => 1, b => 2); … … 11 12 } 12 13 14 #?rakudo skip '"MMD function __concatenate not found for types (100, 80)"' 13 15 { 14 16 my $hash = { a => 1, b => 2 }; … … 20 22 # L<S02/Literals/In order to interpolate an entire hash> 21 23 my %hash = { a=> 1, b => 2 }; 24 #?rakudo 2 todo 'hash (ref) interpolation' 22 25 is "%hash{}", "a\t1\nb\t2\n", 'interpolation with curly braces'; 23 26 is "%hash<>", "a\t1\nb\t2\n", 'interpolation with angle brackets';
