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