Changeset 21165

Show
Ignore:
Timestamp:
07/02/08 06:08:36 (5 months ago)
Author:
pmichaud
Message:

S29-num/abs.t: correct #?rakudo skip message

Files:
1 modified

Legend:

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

    r21108 r21165  
    2121 
    2222for (0, 0.0, 1, 50, 60.0, 99.99) { 
    23 #?rakudo skip 'method fallback to sub unimpl' 
     23#?rakudo 2 skip '.abs on $_ unimplemented' 
    2424    is(.abs, $_, 'got the right absolute value for $_='~$_); 
    25 #?rakudo skip 'method fallback to sub unimpl' 
    2625    is(WHAT .abs, WHAT $_, 'got the right data type('~WHAT($_)~') of absolute value for $_='~$_); 
    2726} 
    2827for (-1, -50, -60.0, -99.99) { 
    29 #?rakudo skip '.abs on $_ unimplemented' 
     28#?rakudo 2 skip '.abs on $_ unimplemented' 
    3029    is(.abs, -$_, 'got the right absolute value for $_='~$_); 
    31 #?rakudo skip '.abs on $_ unimplemented' 
    3230    is(WHAT .abs, WHAT $_, 'got the right data type('~WHAT($_)~') of absolute value for $_='~$_); 
    3331}