I might be missing something completely obvious here, but why do I have to do this:
setup do
@person = mock("person")
@person.stub!(:name).and_return("david")
end
Instead of
@person = mock("person").stub!(:name).and_return("david")
What is mock("string") returning that doesn't allow it to be stubbed versus allowing @person to be stubbed? Is mock not returning an object (perhaps just modifying some internal hash table of mock'ed out functions and then returning a separate object?