Changeset 22011

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

[spec] fudged hash-interpolation.t for rakudo

Files:
1 modified

Legend:

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

    r22010 r22011  
    55plan 7; 
    66 
     7#?rakudo todo 'Hash interpolation with %hash<literal>' 
    78{ 
    89  my %hash = (a => 1, b => 2); 
     
    1112} 
    1213 
     14#?rakudo skip '"MMD function __concatenate not found for types (100, 80)"' 
    1315{ 
    1416  my $hash = { a => 1, b => 2 }; 
     
    2022  # L<S02/Literals/In order to interpolate an entire hash> 
    2123  my %hash = { a=> 1, b => 2 }; 
     24  #?rakudo 2 todo 'hash (ref) interpolation' 
    2225  is "%hash{}", "a\t1\nb\t2\n", 'interpolation with curly braces'; 
    2326  is "%hash<>", "a\t1\nb\t2\n", 'interpolation with angle brackets';