]> git.openstreetmap.org Git - rails.git/blobdiff - test/integration/redirect_test.rb
Fix rubocop lint issues
[rails.git] / test / integration / redirect_test.rb
index 1c4af7d4fe81752888294b9218519c1227744d63..a4ff2eb7ec0cfa24c5dbfc0091ffc266b4a984a4 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
+
   def test_search_redirects
     get "/?query=test"
     assert_response :redirect