I there something like this for Mocha.
I have this:
reservation.expects(:publish_to_sns).twice
reservation.save
reservation.update_attribute :first => 'qweqwe'
And I would like publish_to_sns
to perform its function.
I there something like this for Mocha.
I have this:
reservation.expects(:publish_to_sns).twice
reservation.save
reservation.update_attribute :first => 'qweqwe'
And I would like publish_to_sns
to perform its function.