X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/aff0583a341b473e8c25f605fdddfa55fd275a64..b77406ff38a88e2ab38b4882620f44069b7125f0:/test/integration/redirect_test.rb diff --git a/test/integration/redirect_test.rb b/test/integration/redirect_test.rb index 1c4af7d4f..71640b67d 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 -class RedirectTest < ActionDispatch::IntegrationTest def test_search_redirects get "/?query=test" assert_response :redirect