diff options
Diffstat (limited to 'spec')
-rw-r--r-- | spec/ruby/core/method/super_method_spec.rb | 15 | ||||
-rw-r--r-- | spec/ruby/core/unboundmethod/super_method_spec.rb | 16 |
2 files changed, 9 insertions, 22 deletions
diff --git a/spec/ruby/core/method/super_method_spec.rb b/spec/ruby/core/method/super_method_spec.rb index dc8764f6c7..c63a7aaa0f 100644 --- a/spec/ruby/core/method/super_method_spec.rb +++ b/spec/ruby/core/method/super_method_spec.rb @@ -49,18 +49,9 @@ describe "Method#super_method" do MethodSpecs::InheritedMethods::C.new.derp.should == 'BA' end - ruby_version_is ""..."3.2" do - it "returns the expected super_method" do - method = MethodSpecs::InheritedMethods::C.new.method(:derp) - method.super_method.owner.should == MethodSpecs::InheritedMethods::A - end - end - - ruby_version_is "3.2" do - it "returns the expected super_method" do - method = MethodSpecs::InheritedMethods::C.new.method(:derp) - method.super_method.owner.should == MethodSpecs::InheritedMethods::B - end + it "returns the expected super_method" do + method = MethodSpecs::InheritedMethods::C.new.method(:derp) + method.super_method.owner.should == MethodSpecs::InheritedMethods::A end end diff --git a/spec/ruby/core/unboundmethod/super_method_spec.rb b/spec/ruby/core/unboundmethod/super_method_spec.rb index 5cf96e6fa9..aa7c129377 100644 --- a/spec/ruby/core/unboundmethod/super_method_spec.rb +++ b/spec/ruby/core/unboundmethod/super_method_spec.rb @@ -29,18 +29,14 @@ describe "UnboundMethod#super_method" do # https://github.com/jruby/jruby/issues/7240 context "after changing an inherited methods visibility" do - ruby_version_is ""..."3.2" do - it "returns the expected super_method" do - method = MethodSpecs::InheritedMethods::C.instance_method(:derp) - method.super_method.owner.should == MethodSpecs::InheritedMethods::A - end + it "calls the proper super method" do + method = MethodSpecs::InheritedMethods::C.instance_method(:derp) + method.bind(MethodSpecs::InheritedMethods::C.new).call.should == 'BA' end - ruby_version_is "3.2" do - it "returns the expected super_method" do - method = MethodSpecs::InheritedMethods::C.instance_method(:derp) - method.super_method.owner.should == MethodSpecs::InheritedMethods::B - end + it "returns the expected super_method" do + method = MethodSpecs::InheritedMethods::C.instance_method(:derp) + method.super_method.owner.should == MethodSpecs::InheritedMethods::A end end |