summaryrefslogtreecommitdiff
path: root/spec/ruby/library/bigmath/log_spec.rb
diff options
context:
space:
mode:
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