summaryrefslogtreecommitdiff
path: root/spec/ruby/library/bigmath/log_spec.rb
diff options
context:
space:
mode:
authorBenoit Daloze <[email protected]>2024-02-12 10:56:33 +0100
committerBenoit Daloze <[email protected]>2024-02-12 10:56:33 +0100
commitb19d2409be0b7bac65e6e54cfb3bedc61419ec01 (patch)
tree9046a7aea28aa043053acc473646b40828ec3736 /spec/ruby/library/bigmath/log_spec.rb
parent90a746d246d51d105d7f3e0d1c2ddf7994dd2d4b (diff)
Update to ruby/spec@ce834ad
Diffstat (limited to 'spec/ruby/library/bigmath/log_spec.rb')
-rw-r--r--spec/ruby/library/bigmath/log_spec.rb15
1 files changed, 6 insertions, 9 deletions
diff --git a/spec/ruby/library/bigmath/log_spec.rb b/spec/ruby/library/bigmath/log_spec.rb
index 22df38bb29..2ffbf8b6b9 100644
--- a/spec/ruby/library/bigmath/log_spec.rb
+++ b/spec/ruby/library/bigmath/log_spec.rb
@@ -1,13 +1,10 @@
require_relative '../../spec_helper'
+require 'bigdecimal'
-ruby_version_is ""..."3.4" do
- require 'bigdecimal'
-
- describe "BigDecimal#log" do
- it "handles high-precision Rational arguments" do
- result = BigDecimal('0.22314354220170971436137296411949880462556361100856391620766259404746040597133837784E0')
- r = Rational(1_234_567_890, 987_654_321)
- BigMath.log(r, 50).should == result
- end
+describe "BigDecimal#log" do
+ it "handles high-precision Rational arguments" do
+ result = BigDecimal('0.22314354220170971436137296411949880462556361100856391620766259404746040597133837784E0')
+ r = Rational(1_234_567_890, 987_654_321)
+ BigMath.log(r, 50).should == result
end
end