X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/aff0583a341b473e8c25f605fdddfa55fd275a64..15904542a6694248c08cbcb06739e4788bf59f2a:/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