fix error of AdminControllerTest test_test_email_failure_should_display_the_error
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9641 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
19e56045dd
commit
f08b648cce
|
@ -20,9 +20,23 @@ require File.expand_path('../../test_helper', __FILE__)
|
||||||
class AdminControllerTest < ActionController::TestCase
|
class AdminControllerTest < ActionController::TestCase
|
||||||
fixtures :projects, :users, :roles
|
fixtures :projects, :users, :roles
|
||||||
|
|
||||||
|
class TestDelivery
|
||||||
|
def initialize(*)
|
||||||
|
end
|
||||||
|
|
||||||
|
def deliver!(mail)
|
||||||
|
raise 'Some error message'
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def setup
|
def setup
|
||||||
User.current = nil
|
User.current = nil
|
||||||
@request.session[:user_id] = 1 # admin
|
@request.session[:user_id] = 1 # admin
|
||||||
|
@old_delivery_method = ActionMailer::Base.delivery_method
|
||||||
|
end
|
||||||
|
|
||||||
|
def teardown
|
||||||
|
ActionMailer::Base.delivery_method = @old_delivery_method
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_index
|
def test_index
|
||||||
|
@ -98,7 +112,7 @@ class AdminControllerTest < ActionController::TestCase
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_test_email_failure_should_display_the_error
|
def test_test_email_failure_should_display_the_error
|
||||||
Mailer.stubs(:deliver_test_email).raises(Exception, 'Some error message')
|
ActionMailer::Base.delivery_method = TestDelivery
|
||||||
get :test_email
|
get :test_email
|
||||||
assert_redirected_to '/settings/edit?tab=notifications'
|
assert_redirected_to '/settings/edit?tab=notifications'
|
||||||
assert_match /Some error message/, flash[:error]
|
assert_match /Some error message/, flash[:error]
|
||||||
|
|
Loading…
Reference in New Issue