X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/aff0583a341b473e8c25f605fdddfa55fd275a64..baf10cd39289cd7e94a819305e46f43e85a136c6:/test/integration/redirect_test.rb diff --git a/test/integration/redirect_test.rb b/test/integration/redirect_test.rb index 1c4af7d4f..a4ff2eb7e 100644 --- a/test/integration/redirect_test.rb +++ b/test/integration/redirect_test.rb @@ -1,6 +1,20 @@ -require File.dirname(__FILE__) + '/../test_helper' +require '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