- Timestamp:
- 11/06/08 06:50:56 (2 months ago)
- Location:
- t/spec
- Files:
-
- 2 modified
-
S03-junctions/misc.t (modified) (2 diffs)
-
S29-list/pick.t (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
t/spec/S03-junctions/misc.t
r22788 r22895 61 61 62 62 # test junction to junction 63 63 #?rakudo todo 'junction comparison' 64 64 ok(('a' | 'b' | 'c') eq ($a & $b & $c), 'junction ("a" | "b" | "c") matches junction ($a & $b & $c)'); 65 65 ok(('a' & 'b' & 'c') eq ($a | $b | $c), 'junction ("a" & "b" & "c") matches junction ($a | $b | $c)'); … … 291 291 # junction in boolean context 292 292 ok(?(0&0) == ?(0&&0), 'boolean context'); 293 #?rakudo todo 'boolean context for junctions' 293 294 ok(?(0&1) == ?(0&&1), 'boolean context'); 294 295 ok(?(1&1) == ?(1&&1), 'boolean context'); 296 #?rakudo todo 'boolean context for junctions' 295 297 ok(?(1&0) == ?(1&&0), 'boolean context'); 296 298 ok(!(?(0&0) != ?(0&&0)), 'boolean context'); -
t/spec/S29-list/pick.t
r22893 r22895 67 67 # http://rt.perl.org/rt3/Ticket/Display.html?id=58526 68 68 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' 70 70 ok ?(~([[1, 2], [3, 4]].pick(*)) eq '1 2 3 4' | '3 4 1 2'), '[[1,2],[3,4]].pick(*) does not flatten'; 71 71
