On Jan 26, 2011, at 10:07 AM, Fregas wrote:
> I have a spec where I need to check that the order of 2 method calls
> to 2 different mocks is correct:
>
> mock_customer.should_receive(:save).ordered
> mock_customer.should_recieve(:id).and_return(1).ordered
Don't think it's related, but receive is
I have a spec where I need to check that the order of 2 method calls
to 2 different mocks is correct:
mock_customer.should_receive(:save).ordered
mock_customer.should_recieve(:id).and_return(1).ordered
mock_order.should_receive(:customer_id=).with(1).ordered
however this does not work. I can set