KOBAYASHI Shuji
|
cfe3654fd1
|
Fix assertion name for Numeric#** test
|
2019-01-17 21:16:02 +09:00 |
|
KOBAYASHI Shuji
|
de5da4b7f6
|
Fix coercing for first step counter in Numeric#step
Before:
a=[]; 7.step(4, -3.0) { |c| a << c }; p a #=> [7, 4.0]
After / Ruby:
a=[]; 7.step(4, -3.0) { |c| a << c }; p a #=> [7.0, 4.0]
|
2019-01-15 21:41:54 +09:00 |
|
Yukihiro "Matz" Matsumoto
|
cca19532c5
|
Remove Kernel#class_defined? which is not available in CRuby; #3829
|
2019-01-03 11:34:35 +09:00 |
|
YAMAMOTO Masaya
|
dcd5d0ffec
|
Test for MRB_WITHOUT_FLOAT
|
2017-10-11 17:58:11 +09:00 |
|
Tatsuhiko Kubo
|
bd6dc0da77
|
Add test for Numeric#pow.
|
2014-08-25 17:18:24 +09:00 |
|
take_cheeze
|
ec5b055694
|
Move direct superclass checking to test/t/superclass.rb.
|
2014-06-15 15:02:21 +09:00 |
|
Yukihiro "Matz" Matsumoto
|
be58f1c9ab
|
add Numeric#/ tests; ref #1965
|
2014-03-28 11:05:53 +09:00 |
|
Jun Hiroe
|
0ce98230c5
|
I fix order of actual and expect test value in numeric.rb.
|
2013-08-02 22:14:23 +09:00 |
|
Daniel Bovensiepen
|
6d3d234b7d
|
Improve Numeric Tests
|
2013-06-14 22:17:53 +08:00 |
|
Daniel Bovensiepen
|
0c2d74020a
|
Add more superclass tests
|
2012-06-03 23:31:53 +08:00 |
|
Daniel Bovensiepen
|
31e9705022
|
Add Test cases for Literals, Enumeration, Exceptions and clean line endings
|
2012-05-29 01:20:46 +08:00 |
|
Daniel Bovensiepen
|
3bec8b330c
|
Add Tests for Numeric
|
2012-05-16 11:18:55 -07:00 |
|