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