Changeset 21150

Show
Ignore:
Timestamp:
07/01/08 23:13:19 (3 months ago)
Author:
moritz
Message:

[spec] a bit more fudge fiddling

Location:
t/spec/S03-operators
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • t/spec/S03-operators/numeric-context.t

    r21143 r21150  
    4848is(+'aNaNa', 0, "+'aNaNa' is 0"); 
    4949 
     50#?rakudo 3 todo 'Inf and NaN' 
    5051is( Inf,  'Inf', "'Inf' is Inf"); 
    5152is(-Inf, '-Inf', "'-Inf' is -Inf"); 
  • t/spec/S03-operators/short-circuit.t

    r21141 r21150  
    137137 
    138138# L<S03/Chained comparisons/Each argument chain will evaluate at most once> 
    139 #?rakudo todo 'chained comparison order of evaluations' 
    140139{ 
    141140    my $x = 0; 
    142141    my $y = 0; 
     142    #?rakudo todo 'chained comparison order of evaluations' 
    143143    ok(($x++ < ++$y < ++$y), "chained comparison (truth - 1)"); 
    144144    # expect x=1, y=2