it "stuff" do
(obj = mock("blah")).should_receive(:ping).twice.and_return(5)
obj.ping
obj.ping
obj.ping
end
# this one PASSES!
it "stuff" do
(obj = mock("blah")).should_receive(:ping).twice.and_return(5)
obj.ping
obj.ping
obj.ping
end
# this one PASSES!