aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/array/union_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/array/union_spec.rb')
-rw-r--r--spec/ruby/core/array/union_spec.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/spec/ruby/core/array/union_spec.rb b/spec/ruby/core/array/union_spec.rb
index f7fd5c43ac..58fe23448d 100644
--- a/spec/ruby/core/array/union_spec.rb
+++ b/spec/ruby/core/array/union_spec.rb
@@ -45,8 +45,8 @@ describe "Array#|" do
obj1 = mock('1')
obj2 = mock('2')
- obj1.should_receive(:hash).at_least(1).and_return(0)
- obj2.should_receive(:hash).at_least(1).and_return(0)
+ obj1.stub!(:hash).and_return(0)
+ obj2.stub!(:hash).and_return(0)
obj2.should_receive(:eql?).at_least(1).and_return(true)
([obj1] | [obj2]).should == [obj1]
@@ -54,8 +54,8 @@ describe "Array#|" do
obj1 = mock('3')
obj2 = mock('4')
- obj1.should_receive(:hash).at_least(1).and_return(0)
- obj2.should_receive(:hash).at_least(1).and_return(0)
+ obj1.stub!(:hash).and_return(0)
+ obj2.stub!(:hash).and_return(0)
obj2.should_receive(:eql?).at_least(1).and_return(false)
([obj1] | [obj2]).should == [obj1, obj2]
@@ -74,7 +74,7 @@ describe "Array#|" do
it "properly handles an identical item even when its #eql? isn't reflexive" do
x = mock('x')
- x.should_receive(:hash).at_least(1).and_return(42)
+ x.stub!(:hash).and_return(42)
x.stub!(:eql?).and_return(false) # Stubbed for clarity and latitude in implementation; not actually sent by MRI.
([x] | [x]).should == [x]