]> source.dussan.org Git - redmine.git/commitdiff
use with_settings at test_get_new_without_default_start_date_is_creation_date of...
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 10 May 2013 04:37:09 +0000 (04:37 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 10 May 2013 04:37:09 +0000 (04:37 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11818 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/functional/issues_controller_test.rb

index 586013dd4b3a04257600f281aef8074326f7ed0d..5e2af2132c317dbcbb23b5f2c34ccc35f63f198a 100644 (file)
@@ -1562,15 +1562,14 @@ class IssuesControllerTest < ActionController::TestCase
   end
 
   def test_get_new_without_default_start_date_is_creation_date
-    Setting.default_issue_start_date_to_creation_date = 0
-
-    @request.session[:user_id] = 2
-    get :new, :project_id => 1, :tracker_id => 1
-    assert_response :success
-    assert_template 'new'
-
-    assert_select 'input[name=?]', 'issue[start_date]'
-    assert_select 'input[name=?][value]', 'issue[start_date]', 0
+    with_settings :default_issue_start_date_to_creation_date  => 0 do
+      @request.session[:user_id] = 2
+      get :new, :project_id => 1, :tracker_id => 1
+      assert_response :success
+      assert_template 'new'
+      assert_select 'input[name=?]', 'issue[start_date]'
+      assert_select 'input[name=?][value]', 'issue[start_date]', 0
+    end
   end
 
   def test_get_new_with_default_start_date_is_creation_date