- :back - Back to the page that issued the request. Useful for forms that are triggered from multiple places. Short-hand for redirect_to(request.env["HTTP_REFERER"])
SOLUCIÓN:
def test_should_get_new
@request.env['HTTP_REFERER'] = 'http://whatever'
get :new, :link_id => 1
assert_redirected_to 'http://whatever'
end