summaryrefslogtreecommitdiff
path: root/spec/ruby/library/complex/math/tanh_spec.rb
blob: 469bba7554628fafc97b64f9d2f9ed3df97607ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require_relative '../../../spec_helper'
require 'complex'
require_relative 'shared/tanh'

describe "Math#tanh" do
  it_behaves_like :complex_math_tanh, :_, IncludesMath.new

  it "is a private instance method" do
    IncludesMath.should have_private_instance_method(:tanh)
  end
end

describe "Math.tanh" do
  it_behaves_like :complex_math_tanh, :_, CMath
end