Makes project and tracker assigned first in #attributes=
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8131 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
+11
-5
@@ -279,10 +279,7 @@ class IssueTest < ActiveSupport::TestCase
|
||||
end
|
||||
|
||||
def test_should_not_update_custom_fields_on_changing_tracker_with_different_custom_fields
|
||||
issue = Issue.new(:project_id => 1)
|
||||
issue.attributes = {:tracker_id => 1, :author_id => 1, :status_id => 1, :subject => 'Test', :custom_field_values => {'2' => 'Test'}}
|
||||
issue.save!
|
||||
|
||||
issue = Issue.create!(:project_id => 1, :tracker_id => 1, :author_id => 1, :status_id => 1, :subject => 'Test', :custom_field_values => {'2' => 'Test'})
|
||||
assert !Tracker.find(2).custom_field_ids.include?(2)
|
||||
|
||||
issue = Issue.find(issue.id)
|
||||
@@ -301,7 +298,16 @@ class IssueTest < ActiveSupport::TestCase
|
||||
assert issue.custom_field_values.any?
|
||||
end
|
||||
|
||||
def test_assigning_attributes_should_assign_tracker_id_first
|
||||
def test_assigning_attributes_should_assign_project_and_tracker_first
|
||||
seq = sequence('seq')
|
||||
issue = Issue.new
|
||||
issue.expects(:project_id=).in_sequence(seq)
|
||||
issue.expects(:tracker_id=).in_sequence(seq)
|
||||
issue.expects(:subject=).in_sequence(seq)
|
||||
issue.attributes = {:tracker_id => 2, :project_id => 1, :subject => 'Test'}
|
||||
end
|
||||
|
||||
def test_assigning_tracker_and_custom_fields_should_assign_custom_fields
|
||||
attributes = ActiveSupport::OrderedHash.new
|
||||
attributes['custom_field_values'] = { '1' => 'MySQL' }
|
||||
attributes['tracker_id'] = '1'
|
||||
|
||||
Reference in New Issue
Block a user