]> git.openstreetmap.org Git - rails.git/blobdiff - test/integration/redirect_test.rb
Merge remote-tracking branch 'upstream/pull/1795'
[rails.git] / test / integration / redirect_test.rb
index 1c4af7d4fe81752888294b9218519c1227744d63..71640b67d96aa8edee1ecc61d2d52ff29c092237 100644 (file)
@@ -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