shorten long line of TimelogControllerTest

git-svn-id: http://svn.redmine.org/redmine/trunk@20124 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA
2020-10-05 15:47:34 +00:00
parent c988d6ca48
commit 25f33b9443

View File

@@ -839,8 +839,13 @@ class TimelogControllerTest < Redmine::ControllerTest
def test_bulk_update_custom_field
@request.session[:user_id] = 2
post :bulk_update, :params => {:ids => [1, 2], :time_entry => { :custom_field_values => {'10' => '0'} }}
post(
:bulk_update,
:params => {
:ids => [1, 2],
:time_entry => {:custom_field_values => {'10' => '0'}}
}
)
assert_response 302
assert_equal ["0", "0"], TimeEntry.where(:id => [1, 2]).collect {|i| i.custom_value_for(10).value}
end
@@ -848,8 +853,13 @@ class TimelogControllerTest < Redmine::ControllerTest
def test_bulk_update_clear_custom_field
field = TimeEntryCustomField.generate!(:field_format => 'string')
@request.session[:user_id] = 2
post :bulk_update, :params => {:ids => [1, 2], :time_entry => { :custom_field_values => {field.id.to_s => '__none__'} }}
post(
:bulk_update,
:params => {
:ids => [1, 2],
:time_entry => {:custom_field_values => {field.id.to_s => '__none__'}}
}
)
assert_response 302
assert_equal ["", ""], TimeEntry.where(:id => [1, 2]).collect {|i| i.custom_value_for(field).value}
end