summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_float.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/ruby/test_float.rb b/test/ruby/test_float.rb
index 6fae9bf493..2faf1b0456 100644
--- a/test/ruby/test_float.rb
+++ b/test/ruby/test_float.rb
@@ -61,6 +61,8 @@ class TestFloat < Test::Unit::TestCase
assert(a.abs < Float::EPSILON)
a = Float("-0.0")
assert(a.abs < Float::EPSILON)
+ a = Float("0." + "00" * Float::DIG + "1")
+ assert(a != 0.0)
# add expected behaviour here.
end
end