直到2.14才引入允许.您可以使用obj.stub和stub_chain
# specify a return value obj.stub(:message) { :value } obj.stub(:message => :value) obj.stub(:message).and_return(:value) subject.stub_chain(:one, :two, :three).and_return(:four)