it "stuff" do
(obj = mock("blah")).should_receive(:ping).twice.and_return(5)
obj.ping
obj.ping
obj.ping
end
# this one PASSES!
|
Pastie
Support Pastie
or read my
Pastie << self
blog
it "stuff" do
(obj = mock("blah")).should_receive(:ping).twice.and_return(5)
obj.ping
obj.ping
obj.ping
end
# this one PASSES!
|