X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/aff0583a341b473e8c25f605fdddfa55fd275a64..c0e4394a486002a3d4283200a8a1ed20c0f134f8:/test/integration/redirect_test.rb diff --git a/test/integration/redirect_test.rb b/test/integration/redirect_test.rb index 1c4af7d4f..8f5d9fef5 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