summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-05-14 04:34:07 +0000
committerocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-05-14 04:34:07 +0000
commitdca0de41913ee3de07da76aca9d096b07e685870 (patch)
tree360da6fa434a89161404070e20e2bf115113c83a /test
parentbc8fe41ccaece5b0ec2fe2ef667052572b4876aa (diff)
* test/ruby/test_float.rb: Add test for util.c revision 1.42.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6308 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
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