1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Ensure that save on child object fails for invalid belongs_to association. Closes #11555. [rubyruy]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9247 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Pratik Naik 2008-04-10 13:48:43 +00:00
parent 95fdc82fb2
commit c67e985994
3 changed files with 16 additions and 0 deletions

View file

@ -1,5 +1,7 @@
*SVN*
* Ensure that save on child object fails for invalid belongs_to association. Closes #11555. [rubyruy]
* Add support for interleaving migrations by storing which migrations have run in the new schema_migrations table. Closes #11493 [jordi]
* ActiveRecord::Base#sum defaults to 0 if no rows are returned. Closes #11550 [kamal]

View file

@ -922,6 +922,8 @@ module ActiveRecord
)
end
add_single_associated_save_callbacks(reflection.name)
configure_dependency_for_belongs_to(reflection)
end

View file

@ -377,4 +377,16 @@ class BelongsToAssociationsTest < ActiveRecord::TestCase
assert companies(:first_client).readonly_firm.readonly?
end
def test_save_fails_for_invalid_belongs_to
log = AuditLog.new
assert log.valid?
log.build_developer # Build invalid association
assert !log.developer.valid?
assert !log.valid?
assert_equal "is invalid", log.errors.on("developer")
assert !log.save
end
end