diff options
author | Eric Chahin <erc73@cornell.edu> | 2014-05-01 02:38:15 -0400 |
---|---|---|
committer | Eric Chahin <erc73@cornell.edu> | 2014-05-01 03:27:24 -0400 |
commit | c6d685ba1118cc1f6303122117df945ebe8fceae (patch) | |
tree | b9d3b46fc5b454d8b8089411182da5cf936332c2 /activerecord/test/models | |
parent | 876155705b56e66a8b9ed96f7b79d1c8d1763200 (diff) | |
download | rails-c6d685ba1118cc1f6303122117df945ebe8fceae.tar.gz rails-c6d685ba1118cc1f6303122117df945ebe8fceae.tar.bz2 rails-c6d685ba1118cc1f6303122117df945ebe8fceae.zip |
Fixed custom validation context bug where child
associations were not being saved.
Fixes #13854.
[Eric Chahin, Aaron Nelson, & Kevin Casey]
Diffstat (limited to 'activerecord/test/models')
-rw-r--r-- | activerecord/test/models/pirate.rb | 6 | ||||
-rw-r--r-- | activerecord/test/models/ship.rb | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/activerecord/test/models/pirate.rb b/activerecord/test/models/pirate.rb index e472cf951d..90a3c3ecee 100644 --- a/activerecord/test/models/pirate.rb +++ b/activerecord/test/models/pirate.rb @@ -84,3 +84,9 @@ end class DestructivePirate < Pirate has_one :dependent_ship, :class_name => 'Ship', :foreign_key => :pirate_id, :dependent => :destroy end + +class FamousPirate < ActiveRecord::Base + self.table_name = 'pirates' + has_many :famous_ships + validates_presence_of :catchphrase, on: :conference +end
\ No newline at end of file diff --git a/activerecord/test/models/ship.rb b/activerecord/test/models/ship.rb index 3da031946f..77a4728d0b 100644 --- a/activerecord/test/models/ship.rb +++ b/activerecord/test/models/ship.rb @@ -17,3 +17,9 @@ class Ship < ActiveRecord::Base false end end + +class FamousShip < ActiveRecord::Base + self.table_name = 'ships' + belongs_to :famous_pirate + validates_presence_of :name, on: :conference +end |