Rails3: test: replace deprecated Errors#on to Errors#[] and join with to_s at test/functional/issues_controller_test.rb
On Rails2, Errors#[] returns single error if one error raises. But, on Rails3, Errors#[] always returns the array. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8133 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
c8556330c1
commit
63d27a5389
|
@ -1077,7 +1077,8 @@ class IssuesControllerTest < ActionController::TestCase
|
|||
assert_template 'new'
|
||||
issue = assigns(:issue)
|
||||
assert_not_nil issue
|
||||
assert_equal I18n.translate('activerecord.errors.messages.invalid'), issue.errors.on(:custom_values)
|
||||
assert_equal I18n.translate('activerecord.errors.messages.invalid'),
|
||||
issue.errors[:custom_values].to_s
|
||||
end
|
||||
|
||||
def test_post_create_with_watchers
|
||||
|
|
Loading…
Reference in New Issue