summaryrefslogtreecommitdiff
path: root/spec/ruby/library/cmath/math/asin_spec.rb
blob: 4ac588ebd2f48eea4ea7fb06a6982a9b97e69533 (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/asin'

  describe "Math#asin" do
    it_behaves_like :complex_math_asin, :_, IncludesMath.new

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

  describe "Math.asin" do
    it_behaves_like :complex_math_asin, :_, CMath
  end
end