diff options
author | Emmanuel Oga <EmmanuelOga@gmail.com> | 2012-01-17 01:40:17 -0300 |
---|---|---|
committer | Emmanuel Oga <EmmanuelOga@gmail.com> | 2012-01-17 01:40:17 -0300 |
commit | 9b15e01c219013825275e7e10140d9883d148c8c (patch) | |
tree | a893172fca7e6311b8e035d6081f188d9fc33bae /activerecord/test | |
parent | 21afd9b96d70d1e2b1cffdfb60f7ec64ab240472 (diff) | |
download | rails-9b15e01c219013825275e7e10140d9883d148c8c.tar.gz rails-9b15e01c219013825275e7e10140d9883d148c8c.tar.bz2 rails-9b15e01c219013825275e7e10140d9883d148c8c.zip |
validate related records in the same validation context as parent.
E.G.:
```ruby
class Parent < ActiveRecord::Base
has_one :child
validates_presence_of :name, :on => "custom_context"
validates_associated :child
end
class Child < ActiveRecord::Base
belongs_to :parent
validates_presence_of :name, :on => "custom_context"
end
p = Parent.new(:name => "Montoto", :child => Child.new)
p.valid?(:custom_context) # => Returns true, even though the child is not valid under the same context.
```
Diffstat (limited to 'activerecord/test')
-rw-r--r-- | activerecord/test/cases/validations/association_validation_test.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/activerecord/test/cases/validations/association_validation_test.rb b/activerecord/test/cases/validations/association_validation_test.rb index f155b9bc40..c72b7b35cd 100644 --- a/activerecord/test/cases/validations/association_validation_test.rb +++ b/activerecord/test/cases/validations/association_validation_test.rb @@ -118,4 +118,21 @@ class AssociationValidationTest < ActiveRecord::TestCase end end + def test_validates_associated_models_in_the_same_context + Topic.validates_presence_of :title, :on => :custom_context + Topic.validates_associated :replies + Reply.validates_presence_of :title, :on => :custom_context + + t = Topic.new('title' => '') + r = t.replies.new('title' => '') + + assert t.valid? + assert !t.valid?(:custom_context) + + t.title = "Longer" + assert !t.valid?(:custom_context), "Should NOT be valid if the associated object is not valid in the same context." + + r.title = "Longer" + assert t.valid?(:custom_context), "Should be valid if the associated object is not valid in the same context." + end end |