X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/ba4a3e3ce96eddc9bbbcde1f255a80f65f49dc8f..e418075e26d80d68e4127d3358a2d8b11dee3a13:/test/integration/redirect_test.rb diff --git a/test/integration/redirect_test.rb b/test/integration/redirect_test.rb index 1c4af7d4f..357c20212 100644 --- a/test/integration/redirect_test.rb +++ b/test/integration/redirect_test.rb @@ -1,6 +1,20 @@ require File.dirname(__FILE__) + '/../test_helper' class RedirectTest < ActionDispatch::IntegrationTest + def test_legacy_redirects + get "/index.html" + assert_response :redirect + assert_redirected_to "/" + + get "/create-account.html" + assert_response :redirect + assert_redirected_to "/user/new" + + get "/forgot-password.html" + assert_response :redirect + assert_redirected_to "/user/forgot-password" + end + def test_search_redirects get "/?query=test" assert_response :redirect