Reverts r10623 for clarity, this test does not need the default language to be forced to "en".
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10625 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
8a6ce3a646
commit
9af6141c91
|
@ -2872,23 +2872,22 @@ class IssuesControllerTest < ActionController::TestCase
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_put_update_with_spent_time_and_failure_should_not_add_spent_time
|
def test_put_update_with_spent_time_and_failure_should_not_add_spent_time
|
||||||
with_settings :default_language => "en" do
|
|
||||||
@request.session[:user_id] = 2
|
@request.session[:user_id] = 2
|
||||||
|
|
||||||
assert_no_difference('TimeEntry.count') do
|
assert_no_difference('TimeEntry.count') do
|
||||||
put :update,
|
put :update,
|
||||||
:id => 1,
|
:id => 1,
|
||||||
:issue => { :subject => '' },
|
:issue => { :subject => '' },
|
||||||
:time_entry => { :hours => '2.5', :comments => 'should not be added',
|
:time_entry => { :hours => '2.5', :comments => 'should not be added', :activity_id => TimeEntryActivity.first.id }
|
||||||
:activity_id => TimeEntryActivity.first.id }
|
|
||||||
assert_response :success
|
assert_response :success
|
||||||
end
|
end
|
||||||
|
|
||||||
assert_select 'input[name=?][value=?]', 'time_entry[hours]', '2.5'
|
assert_select 'input[name=?][value=?]', 'time_entry[hours]', '2.5'
|
||||||
assert_select 'input[name=?][value=?]', 'time_entry[comments]', 'should not be added'
|
assert_select 'input[name=?][value=?]', 'time_entry[comments]', 'should not be added'
|
||||||
assert_select 'select[name=?]', 'time_entry[activity_id]' do
|
assert_select 'select[name=?]', 'time_entry[activity_id]' do
|
||||||
assert_select 'option[value=?][selected=selected]', TimeEntryActivity.first.id
|
assert_select 'option[value=?][selected=selected]', TimeEntryActivity.first.id
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
|
||||||
|
|
||||||
def test_put_update_with_attachment_only
|
def test_put_update_with_attachment_only
|
||||||
set_tmp_attachments_directory
|
set_tmp_attachments_directory
|
||||||
|
|
Loading…
Reference in New Issue