Rails3: test: replace deprecated Errors#on to Errors#[] and join with to_s at test/unit/time_entry_activity_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@8136 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
66b49c634d
commit
7aba81dbe7
|
@ -49,7 +49,8 @@ class TimeEntryActivityTest < ActiveSupport::TestCase
|
|||
|
||||
e = TimeEntryActivity.new(:name => 'Custom Data')
|
||||
assert !e.save
|
||||
assert_equal I18n.translate('activerecord.errors.messages.invalid'), e.errors.on(:custom_values)
|
||||
assert_equal I18n.translate('activerecord.errors.messages.invalid'),
|
||||
e.errors[:custom_values].to_s
|
||||
end
|
||||
|
||||
def test_create_with_required_custom_field_should_succeed
|
||||
|
|
Loading…
Reference in New Issue