errors.add :start_date, :earlier_than_minimum_start_date, :date => format_date(soonest_start)
end
- if project && fixed_version
- if !assignable_versions.include?(fixed_version)
+ if project && fixed_version_id
+ if fixed_version.nil? || assignable_versions.exclude?(fixed_version)
errors.add :fixed_version_id, :inclusion
elsif reopening? && fixed_version.closed?
errors.add :base, I18n.t(:error_can_not_reopen_issue_on_closed_version)
assert_equal ['open'], issue.assignable_versions.collect(&:status).uniq
end
+ def test_should_not_be_able_to_set_an_invalid_version_id
+ issue = Issue.new(:project_id => 1, :tracker_id => 1, :author_id => 1,
+ :status_id => 1, :fixed_version_id => 424242,
+ :subject => 'New issue')
+ assert !issue.save
+ assert_not_equal [], issue.errors[:fixed_version_id]
+ end
+
def test_should_not_be_able_to_assign_a_new_issue_to_a_closed_version
issue = Issue.new(:project_id => 1, :tracker_id => 1, :author_id => 1,
:status_id => 1, :fixed_version_id => 1,