mirror of
https://github.com/redmine/redmine.git
synced 2025-12-20 15:30:44 +01:00
Use named routes in controllers.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10981 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -90,7 +90,7 @@ class AdminControllerTest < ActionController::TestCase
|
||||
ActionMailer::Base.deliveries.clear
|
||||
|
||||
get :test_email
|
||||
assert_redirected_to '/settings/edit?tab=notifications'
|
||||
assert_redirected_to '/settings?tab=notifications'
|
||||
mail = ActionMailer::Base.deliveries.last
|
||||
assert_not_nil mail
|
||||
user = User.find(1)
|
||||
@@ -100,7 +100,7 @@ class AdminControllerTest < ActionController::TestCase
|
||||
def test_test_email_failure_should_display_the_error
|
||||
Mailer.stubs(:test_email).raises(Exception, 'Some error message')
|
||||
get :test_email
|
||||
assert_redirected_to '/settings/edit?tab=notifications'
|
||||
assert_redirected_to '/settings?tab=notifications'
|
||||
assert_match /Some error message/, flash[:error]
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user