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

test/functional/issues_controller_test.rb

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