Rails3: test: replace deprecated errors.on at test_should_not_be_able_to_assign_a_new_issue_to_a_closed_version of unit/issue_test.rb
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7609 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
d986a35a9b
commit
faff6c9898
|
@ -407,7 +407,7 @@ class IssueTest < ActiveSupport::TestCase
|
|||
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, :subject => 'New issue')
|
||||
assert !issue.save
|
||||
assert_not_nil issue.errors.on(:fixed_version_id)
|
||||
assert_not_nil issue.errors[:fixed_version_id]
|
||||
end
|
||||
|
||||
def test_should_not_be_able_to_assign_a_new_issue_to_a_locked_version
|
||||
|
|
Loading…
Reference in New Issue