summaryrefslogtreecommitdiff
path: root/spec/ruby/library/cmath/math/asinh_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/cmath/math/asinh_spec.rb')
-rw-r--r--spec/ruby/library/cmath/math/asinh_spec.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/spec/ruby/library/cmath/math/asinh_spec.rb b/spec/ruby/library/cmath/math/asinh_spec.rb
deleted file mode 100644
index 7d8b397a04..0000000000
--- a/spec/ruby/library/cmath/math/asinh_spec.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-require_relative '../../../spec_helper'
-
-ruby_version_is ''...'2.7' do
- require 'complex'
- require_relative 'shared/asinh'
-
- describe "Math#asinh" do
- it_behaves_like :complex_math_asinh, :_, IncludesMath.new
-
- it "is a private instance method" do
- IncludesMath.should have_private_instance_method(:asinh)
- end
- end
-
- describe "Math.asinh" do
- it_behaves_like :complex_math_asinh, :_, CMath
- end
-end