aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorAlexey Chernenkov <laise@pisem.net>2013-05-30 20:05:13 +0600
committerAlexey Chernenkov <laise@pisem.net>2013-07-18 10:54:36 +0600
commit0f5ba6e124b583fa0c92fc6e82fff124673d8e0d (patch)
tree6d8c11c51ccffd60707fc8f64bcb20f501a12abb /actionpack/test
parentac5cc6957142f2b22eee0f86710fa18f60313aec (diff)
downloadrails-0f5ba6e124b583fa0c92fc6e82fff124673d8e0d.tar.gz
rails-0f5ba6e124b583fa0c92fc6e82fff124673d8e0d.tar.bz2
rails-0f5ba6e124b583fa0c92fc6e82fff124673d8e0d.zip
Fix `assert_redirected_to` does not show user-supplied message.
Issue: when `assert_redirected_to` fails due to the response redirect not matching the expected redirect the user-supplied message (second parameter) is not shown. This message is only shown if the response is not a redirect.
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/dispatch/routing_assertions_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/test/dispatch/routing_assertions_test.rb b/actionpack/test/dispatch/routing_assertions_test.rb
index 9f95d82129..423eeda92c 100644
--- a/actionpack/test/dispatch/routing_assertions_test.rb
+++ b/actionpack/test/dispatch/routing_assertions_test.rb
@@ -42,7 +42,7 @@ class RoutingAssertionsTest < ActionController::TestCase
def test_assert_recognizes_with_extras
assert_recognizes({ :controller => 'articles', :action => 'index', :page => '1' }, '/articles', { :page => '1' })
end
-
+
def test_assert_recognizes_with_method
assert_recognizes({ :controller => 'articles', :action => 'create' }, { :path => '/articles', :method => :post })
assert_recognizes({ :controller => 'articles', :action => 'update', :id => '1' }, { :path => '/articles/1', :method => :put })