]> source.dussan.org Git - redmine.git/commitdiff
use with_settings at MailHandlerControllerTest#test_should_create_issue_with_options
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 26 Nov 2020 14:47:08 +0000 (14:47 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 26 Nov 2020 14:47:08 +0000 (14:47 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20504 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/functional/mail_handler_controller_test.rb

index 2d440452dd39a69ab285f6615fa25ccbd9dfc18b..3b716790091755111dd413fe2d205f6324d8c0a9 100644 (file)
@@ -54,19 +54,25 @@ class MailHandlerControllerTest < Redmine::ControllerTest
 
   def test_should_create_issue_with_options
     # Enable API and set a key
-    Setting.mail_handler_api_enabled = 1
-    Setting.mail_handler_api_key = 'secret'
-    assert_difference 'Issue.count' do
-      post(
-        :index,
-        :params => {
-          :key => 'secret',
-          :email => IO.read(File.join(FIXTURES_PATH, 'ticket_on_given_project.eml')),
-          :issue => {
-            :is_private => '1'
+    with_settings(
+      :mail_handler_api_enabled => 1,
+      :mail_handler_api_key => 'secret'
+    ) do
+      assert_difference 'Issue.count' do
+        post(
+          :index,
+          :params => {
+            :key => 'secret',
+            :email =>
+              IO.read(
+                File.join(FIXTURES_PATH, 'ticket_on_given_project.eml')
+              ),
+            :issue => {
+              :is_private => '1'
+            }
           }
-        }
-      )
+        )
+      end
     end
     assert_response 201
     issue = Issue.order(:id => :desc).first