summaryrefslogtreecommitdiff
path: root/spec/ruby/core/float/divide_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/float/divide_spec.rb')
-rw-r--r--spec/ruby/core/float/divide_spec.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/spec/ruby/core/float/divide_spec.rb b/spec/ruby/core/float/divide_spec.rb
index d8f71a6b98..72ab7527bd 100644
--- a/spec/ruby/core/float/divide_spec.rb
+++ b/spec/ruby/core/float/divide_spec.rb
@@ -36,4 +36,8 @@ describe "Float#/" do
-> { 13.0 / "10" }.should raise_error(TypeError)
-> { 13.0 / :symbol }.should raise_error(TypeError)
end
+
+ it "divides correctly by Rational numbers" do
+ (1.2345678901234567 / Rational(1, 10000000000000000000)).should == 1.2345678901234567e+19
+ end
end