summaryrefslogtreecommitdiff
path: root/spec/ruby/library/bigmath/log_spec.rb
blob: 2ffbf8b6b9cbdf4e09bd2b646d740cf8a70534ff (plain)
1
2
3
4
5
6
7
8
9
10
require_relative '../../spec_helper'
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
end