X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/61bb31ebdddc9e7c317a1c6784a68874d5a0ef80..031afed7aae4492a96bdf389ffc504a9955677ad:/test/integration/redirect_test.rb diff --git a/test/integration/redirect_test.rb b/test/integration/redirect_test.rb index 5a9ba17ec..1c4af7d4f 100644 --- a/test/integration/redirect_test.rb +++ b/test/integration/redirect_test.rb @@ -31,6 +31,10 @@ class RedirectTest < ActionDispatch::IntegrationTest get "/user/name/edits" assert_response :redirect assert_redirected_to "/user/name/history" + + get "/user/name%20with%20spaces/edits" + assert_response :redirect + assert_redirected_to "/user/name%20with%20spaces/history" end def test_history_feed_redirects @@ -45,6 +49,10 @@ class RedirectTest < ActionDispatch::IntegrationTest get "/user/name/edits/feed" assert_response :redirect assert_redirected_to "/user/name/history/feed" + + get "/user/name%20with%20spaces/edits/feed" + assert_response :redirect + assert_redirected_to "/user/name%20with%20spaces/history/feed" end def test_browse_redirects