1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/core/math/atanh_spec.rb

15 lines
464 B
Ruby
Raw Normal View History

require_relative '../../spec_helper'
require_relative '../../fixtures/math/common'
require_relative '../../shared/math/atanh'
describe "Math.atanh" do
it_behaves_like :math_atanh_base, :atanh, Math
it_behaves_like :math_atanh_no_complex, :atanh, Math
end
describe "Math#atanh" do
it_behaves_like :math_atanh_private, :atanh
it_behaves_like :math_atanh_base, :atanh, IncludesMath.new
it_behaves_like :math_atanh_no_complex, :atanh, IncludesMath.new
end