Fixed that bulk copy raises an error on validation failure (#13943).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11788 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2013-05-04 15:18:16 +00:00
parent 70bdb86c53
commit d69de691a7
2 changed files with 13 additions and 4 deletions

View File

@@ -3821,6 +3821,13 @@ class IssuesControllerTest < ActionController::TestCase
assert_redirected_to :controller => 'issues', :action => 'show', :id => issue
end
def test_bulk_copy_with_all_failures_should_display_errors
@request.session[:user_id] = 2
post :bulk_update, :ids => [1, 2], :copy => '1', :issue => {:start_date => 'foo'}
assert_response :success
end
def test_destroy_issue_with_no_time_entries
assert_nil TimeEntry.find_by_issue_id(2)
@request.session[:user_id] = 2