Changeset 22788

Show
Ignore:
Timestamp:
10/27/08 23:40:39 (2 months ago)
Author:
moritz
Message:

[t/spec] some unfudging for rakudo

Location:
t/spec
Files:
3 modified

Legend:

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

    r22383 r22788  
    122122 
    123123# [] creates new containers (() does not) 
    124 #?rakudo skip 'infix:<=:=> unimplemented' 
     124#?rakudo todo 'infix:<=:=> unimplemented' 
    125125{ 
    126126  my $foo; 
     
    128128} 
    129129 
    130 #?rakudo skip 'infix:<=:=> unimplemented' 
     130#?rakudo todo 'infix:<=:=> unimplemented' 
    131131{ 
    132132  my $foo; 
    133133  my $arrayref = [$foo]; 
    134   ok !($arrayref[0] =:= $foo), "creating arrays using [] creates new containers (2)"; 
     134  ok $arrayref[0] !=:= $foo, "creating arrays using [] creates new containers (2)"; 
    135135} 
  • t/spec/S03-junctions/misc.t

    r22286 r22788  
    6262    # test junction to junction 
    6363     
    64     #?rakudo todo 'Compare junctions with junctions' 
    6564    ok(('a' | 'b' | 'c') eq ($a & $b & $c), 'junction ("a" | "b" | "c") matches junction ($a & $b & $c)');     
    6665    ok(('a' & 'b' & 'c') eq ($a | $b | $c), 'junction ("a" & "b" & "c") matches junction ($a | $b | $c)');  
     
    292291# junction in boolean context 
    293292ok(?(0&0) == ?(0&&0), 'boolean context'); 
    294 #?rakudo todo 'boolen context of junctions' 
    295293ok(?(0&1) == ?(0&&1), 'boolean context'); 
    296294ok(?(1&1) == ?(1&&1), 'boolean context'); 
    297 #?rakudo todo 'boolen context of junctions' 
    298295ok(?(1&0) == ?(1&&0), 'boolean context'); 
    299296ok(!(?(0&0) != ?(0&&0)), 'boolean context'); 
  • t/spec/S29-list/pick.t

    r22260 r22788  
    6767    # http://rt.perl.org/rt3/Ticket/Display.html?id=58526 
    6868    ok ?([[1, 2], [3, 4]].pick.join('|') eq any('1|2', '3|4')), '[[1,2],[3,4]].pick does not flatten'; 
    69     #?rakudo todo 'List.pick(*) should not flatten, RT #58526' 
    7069    ok ?(~([[1, 2], [3, 4]].pick(*)) eq '1 2 3 4' | '3 4 1 2'), '[[1,2],[3,4]].pick(*) does not flatten'; 
    7170