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=>\'
rails integration tests should be written so that the on case tests the one single request - response cycle. we can check redirects. but if you have to do something like
get '/something', {:status=>'any_other'}, @header
get '/something', {:status=>'ok'}, @header
You should write two different cases for this.