summaryrefslogtreecommitdiff
path: root/spec/ruby/library/cmath/math/acosh_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/cmath/math/acosh_spec.rb')
-rw-r--r--spec/ruby/library/cmath/math/acosh_spec.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/spec/ruby/library/cmath/math/acosh_spec.rb b/spec/ruby/library/cmath/math/acosh_spec.rb
index 809112f6c0..e15f14f95f 100644
--- a/spec/ruby/library/cmath/math/acosh_spec.rb
+++ b/spec/ruby/library/cmath/math/acosh_spec.rb
@@ -1,18 +1 @@
require_relative '../../../spec_helper'
-
-ruby_version_is ''...'2.7' do
- require 'complex'
- require_relative 'shared/acosh'
-
- describe "Math#acosh" do
- it_behaves_like :complex_math_acosh, :_, IncludesMath.new
-
- it "is a private instance method" do
- IncludesMath.should have_private_instance_method(:acosh)
- end
- end
-
- describe "Math.acosh" do
- it_behaves_like :complex_math_acosh, :_, CMath
- end
-end