Changeset 22439 for t

Show
Ignore:
Timestamp:
09/27/08 22:36:00 (2 months ago)
Author:
moritz
Message:

[t/spec] unfudge passing TODO tests in radix.t

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • t/spec/S02-literals/radix.t

    r22423 r22439  
    212212 
    213213# tests for the _valid_ string interpretations of radix notations 
    214 #?rakudo todo "patch has not been applied, see RT# 59222" 
    215214{ 
    216215    is +"1234.567", 1234.567, "standard decimal (radix 10) fractions"; 
    217216    is +"1.234e3", 1234, "basic exponential form works (1)"; 
    218217    is +"1.234E3", 1234, "basic exponential form works (2)"; 
     218} 
     219#?rakudo todo "patch has not been applied, see RT# 59222" 
     220{ 
    219221    #is +":2<0101>", 5, "radix 2 notation works"; 
    220222    is +":16<DeAdBeEf>", 0xDEADBEEF, "radix 16 notation works";