Changeset 21208 for t/spec/S29-num/abs.t
- Timestamp:
- 07/04/08 07:35:26 (5 months ago)
- Files:
-
- 1 modified
-
t/spec/S29-num/abs.t (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
t/spec/S29-num/abs.t
r21165 r21208 21 21 22 22 for (0, 0.0, 1, 50, 60.0, 99.99) { 23 #?rakudo 2 skip '.abs on $_ unimplemented'24 23 is(.abs, $_, 'got the right absolute value for $_='~$_); 25 24 is(WHAT .abs, WHAT $_, 'got the right data type('~WHAT($_)~') of absolute value for $_='~$_); 26 25 } 27 26 for (-1, -50, -60.0, -99.99) { 28 #?rakudo 2 skip '.abs on $_ unimplemented'29 27 is(.abs, -$_, 'got the right absolute value for $_='~$_); 30 28 is(WHAT .abs, WHAT $_, 'got the right data type('~WHAT($_)~') of absolute value for $_='~$_);
