summaryrefslogtreecommitdiff
path: root/spec/ruby/library/cmath/math/log_spec.rb
blob: b4da7813231d2e2f1bd48be62443b31e5259922b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require_relative '../../../spec_helper'

ruby_version_is ''...'2.7' do
  require 'complex'
  require_relative 'shared/log'

  describe "Math#log" do
    it_behaves_like :complex_math_log, :_, IncludesMath.new

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

  describe "Math.log" do
    it_behaves_like :complex_math_log, :_, CMath
  end
end