diff options
author | Andrew White <andyw@pixeltrix.co.uk> | 2014-05-13 10:52:40 +0100 |
---|---|---|
committer | Andrew White <andyw@pixeltrix.co.uk> | 2014-05-13 10:52:40 +0100 |
commit | b95ac8a20b9764c9736046eb86e7ae1b6082d65a (patch) | |
tree | df2cde8c7c612eae210a6ce2520ff906c8fb5f6e /actionpack/test | |
parent | fd6d6dc6024adb77be92f9ef7d13dbf5722c1770 (diff) | |
parent | 7ec665303d125c945f7d59affb904f974143a087 (diff) | |
download | rails-b95ac8a20b9764c9736046eb86e7ae1b6082d65a.tar.gz rails-b95ac8a20b9764c9736046eb86e7ae1b6082d65a.tar.bz2 rails-b95ac8a20b9764c9736046eb86e7ae1b6082d65a.zip |
Merge pull request #15084 from arthurnn/fix_assert_redirected_to
Fix regression on `assert_redirected_to`.
Diffstat (limited to 'actionpack/test')
-rw-r--r-- | actionpack/test/controller/integration_test.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/actionpack/test/controller/integration_test.rb b/actionpack/test/controller/integration_test.rb index e851cc6a63..200a2dcc47 100644 --- a/actionpack/test/controller/integration_test.rb +++ b/actionpack/test/controller/integration_test.rb @@ -374,6 +374,10 @@ class IntegrationProcessTest < ActionDispatch::IntegrationTest follow_redirect! assert_response :success assert_equal "/get", path + + get '/moved' + assert_response :redirect + assert_redirected_to '/method' end end @@ -511,6 +515,8 @@ class IntegrationProcessTest < ActionDispatch::IntegrationTest end set.draw do + get 'moved' => redirect('/method') + match ':action', :to => controller, :via => [:get, :post], :as => :action get 'get/:action', :to => controller, :as => :get_action end |