diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-04-11 17:11:59 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2016-04-11 17:11:59 +0000 |
commit | bb2c6f607610442d6be8de893ff15ff715ceb0d7 (patch) | |
tree | df597e2f977e01a667940205d1285bf601c303e8 /test | |
parent | bf60f4def06c57b636af97b45772bd41f1c5cd8c (diff) | |
download | redmine-bb2c6f607610442d6be8de893ff15ff715ceb0d7.tar.gz redmine-bb2c6f607610442d6be8de893ff15ff715ceb0d7.zip |
Fixed that subtasks lose their custom fields when copying an issue to a different project (#22342).
git-svn-id: http://svn.redmine.org/redmine/trunk@15318 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/issues_controller_test.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb index 3021d0f42..38125feee 100644 --- a/test/functional/issues_controller_test.rb +++ b/test/functional/issues_controller_test.rb @@ -3001,6 +3001,24 @@ class IssuesControllerTest < ActionController::TestCase assert_equal issue.descendants.map(&:subject).sort, copy.descendants.map(&:subject).sort end + def test_create_as_copy_to_a_different_project_should_copy_subtask_custom_fields + issue = Issue.generate! {|i| i.custom_field_values = {'2' => 'Foo'}} + child = Issue.generate!(:parent_issue_id => issue.id) {|i| i.custom_field_values = {'2' => 'Bar'}} + @request.session[:user_id] = 1 + + assert_difference 'Issue.count', 2 do + post :create, :project_id => 'ecookbook', :copy_from => issue.id, + :issue => {:project_id => '2', :tracker_id => 1, :status_id => '1', + :subject => 'Copy with subtasks', :custom_field_values => {'2' => 'Foo'}}, + :copy_subtasks => '1' + end + + child_copy, issue_copy = Issue.order(:id => :desc).limit(2).to_a + assert_equal 2, issue_copy.project_id + assert_equal 'Foo', issue_copy.custom_field_value(2) + assert_equal 'Bar', child_copy.custom_field_value(2) + end + def test_create_as_copy_without_copy_subtasks_option_should_not_copy_subtasks @request.session[:user_id] = 2 issue = Issue.generate_with_descendants! |