Changeset 22895 for t

Show
Ignore:
Timestamp:
11/06/08 06:50:56 (2 months ago)
Author:
pmichaud
Message:

[spec]: Revert some incorrect unfudging in r22788.

Location:
t/spec
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • t/spec/S03-junctions/misc.t

    r22788 r22895  
    6161     
    6262    # test junction to junction 
    63      
     63    #?rakudo todo 'junction comparison' 
    6464    ok(('a' | 'b' | 'c') eq ($a & $b & $c), 'junction ("a" | "b" | "c") matches junction ($a & $b & $c)');     
    6565    ok(('a' & 'b' & 'c') eq ($a | $b | $c), 'junction ("a" & "b" & "c") matches junction ($a | $b | $c)');  
     
    291291# junction in boolean context 
    292292ok(?(0&0) == ?(0&&0), 'boolean context'); 
     293#?rakudo todo 'boolean context for junctions' 
    293294ok(?(0&1) == ?(0&&1), 'boolean context'); 
    294295ok(?(1&1) == ?(1&&1), 'boolean context'); 
     296#?rakudo todo 'boolean context for junctions' 
    295297ok(?(1&0) == ?(1&&0), 'boolean context'); 
    296298ok(!(?(0&0) != ?(0&&0)), 'boolean context'); 
  • t/spec/S29-list/pick.t

    r22893 r22895  
    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 'array reference flattening' 
     69    #?rakudo todo 'array reference flattening, RT #58526' 
    7070    ok ?(~([[1, 2], [3, 4]].pick(*)) eq '1 2 3 4' | '3 4 1 2'), '[[1,2],[3,4]].pick(*) does not flatten'; 
    7171