Revision 27810

Date:
2009/07/30 03:37:44
Author:
kyle
Revision Log:
[t/spec] Test for RT #64184 and another junction test fix
Files:

Legend:

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

     
    10 10
    11 11 =end pod
    12 12
    13 #?rakudo 2 todo 'identifying junctions (RT #67886)'
    14 isa_ok any(6,7), 'Junction';
    15 is any(6,7).WHAT, 'Junction', 'Junction.WHAT works';
    13 #?rakudo skip 'Null PMC access in get_integer() (RT #64184)'
    14 isa_ok any(6,7), Junction;
    15 is any(6,7).WHAT, Junction, 'Junction.WHAT works';
    16 16
    17 17 # avoid auto-threading on ok()
    18 18 sub jok(Object $condition, $msg?) { ok ?($condition), $msg };