Stub RSpec cookies to set them in your tests
I have recently been in the situation where I was testing a controller that looked up the value of a cookie in a before_filter to validate the user.
I had trouble setting the cookie from within the controller spec so that it was available to the before_filter. The solution that I want to share is
controller.stubs(:cookies).returns({:user_session => 'xxxx'})
The reason I could not get this working earlier was that I was mistakenly trying to stub the cookies method directly. Instead I have to stub the controller cookies, even if it is a private method.
Published on Wednesday 7th of December 2011