aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases
diff options
context:
space:
mode:
authorSean Griffin <sean@thoughtbot.com>2015-01-30 07:26:33 -0700
committerSean Griffin <sean@thoughtbot.com>2015-01-30 07:27:20 -0700
commit85465ed3e6c582d25f0c8fafe21f7a2c182c2f67 (patch)
tree4a81ee31eb66c298d0c0e85f19756b1114aec1a7 /activerecord/test/cases
parent5170c11c97c5e3e786530d0ce1719e38e3c09d1f (diff)
downloadrails-85465ed3e6c582d25f0c8fafe21f7a2c182c2f67.tar.gz
rails-85465ed3e6c582d25f0c8fafe21f7a2c182c2f67.tar.bz2
rails-85465ed3e6c582d25f0c8fafe21f7a2c182c2f67.zip
Always perform validations on nested attribute associations
Collection associations would have already been validated, but singular associations were not. Fixes #18735.
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r--activerecord/test/cases/nested_attributes_test.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/activerecord/test/cases/nested_attributes_test.rb b/activerecord/test/cases/nested_attributes_test.rb
index a9e93ad1b6..198cd6f341 100644
--- a/activerecord/test/cases/nested_attributes_test.rb
+++ b/activerecord/test/cases/nested_attributes_test.rb
@@ -1047,4 +1047,11 @@ class TestHasManyAutosaveAssociationWhichItselfHasAutosaveAssociations < ActiveR
ship.save!
end
end
+
+ test "nested singular associations are validated" do
+ part = ShipPart.new(name: "Stern", ship_attributes: { name: nil })
+
+ assert_not part.valid?
+ assert_equal ["Ship name can't be blank"], part.errors.full_messages
+ end
end