diff options
-rw-r--r-- | test/functional/mail_handler_controller_test.rb | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/test/functional/mail_handler_controller_test.rb b/test/functional/mail_handler_controller_test.rb index ba576039d..eb2b1182d 100644 --- a/test/functional/mail_handler_controller_test.rb +++ b/test/functional/mail_handler_controller_test.rb @@ -122,16 +122,20 @@ class MailHandlerControllerTest < Redmine::ControllerTest def test_should_not_allow_with_api_disabled # Disable API - Setting.mail_handler_api_enabled = 0 - Setting.mail_handler_api_key = 'secret' - assert_no_difference 'Issue.count' do - post( - :index, - :params => { - :key => 'secret', - :email => IO.read(File.join(FIXTURES_PATH, 'ticket_on_given_project.eml')) - } - ) + with_settings( + :mail_handler_api_enabled => 0, + :mail_handler_api_key => 'secret' + ) do + assert_no_difference 'Issue.count' do + post( + :index, + :params => { + :key => 'secret', + :email => + IO.read(File.join(FIXTURES_PATH, 'ticket_on_given_project.eml')) + } + ) + end end assert_response 403 assert_include 'Access denied', response.body |