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=>\'
Using Capybara instead of rspec is a better solution for (request) intergration tests. It uses the same syntax as rspec and allow multiple requests in a single it block. I use rspec for unit testing and capybara for integration testing.
https://github.com/jnicklas/capybara