Changeset 21208

Show
Ignore:
Timestamp:
07/04/08 07:35:26 (3 months ago)
Author:
pmichaud
Message:

[rakudo]: Unfudge tests in S29-num/abs.t

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • t/spec/S29-num/abs.t

    r21165 r21208  
    2121 
    2222for (0, 0.0, 1, 50, 60.0, 99.99) { 
    23 #?rakudo 2 skip '.abs on $_ unimplemented' 
    2423    is(.abs, $_, 'got the right absolute value for $_='~$_); 
    2524    is(WHAT .abs, WHAT $_, 'got the right data type('~WHAT($_)~') of absolute value for $_='~$_); 
    2625} 
    2726for (-1, -50, -60.0, -99.99) { 
    28 #?rakudo 2 skip '.abs on $_ unimplemented' 
    2927    is(.abs, -$_, 'got the right absolute value for $_='~$_); 
    3028    is(WHAT .abs, WHAT $_, 'got the right data type('~WHAT($_)~') of absolute value for $_='~$_);