I\'m having problem making two requests to the same url in a rails integration test, with rspec
it \'does something\' do # get \'/something\', {:status=>\'
I don't think the problem is that you are getting the same response, it is that you are actually sending the same request twice.
The following works for me when I want to make two requests in the same test: @request.delete_header 'RAW_POST_DATA'
@request.delete_header 'RAW_POST_DATA'