aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/pirate.rb
diff options
context:
space:
mode:
authorMatthew Draper <matthew@trebex.net>2014-05-03 16:19:24 +0930
committerMatthew Draper <matthew@trebex.net>2014-05-03 16:29:40 +0930
commit022c797926591ed62d63f403ef314f2461b506ea (patch)
tree3e044af4274a7fc22f1e2950c5af198661dfc384 /activerecord/test/models/pirate.rb
parent193eb6252f0b2f0031acdb3157d4bb2efc0447c6 (diff)
parentc6d685ba1118cc1f6303122117df945ebe8fceae (diff)
downloadrails-022c797926591ed62d63f403ef314f2461b506ea.tar.gz
rails-022c797926591ed62d63f403ef314f2461b506ea.tar.bz2
rails-022c797926591ed62d63f403ef314f2461b506ea.zip
Merge pull request #14924 from eric-chahin/issue_13854
Fixed custom validation context bug for child associations
Diffstat (limited to 'activerecord/test/models/pirate.rb')
-rw-r--r--activerecord/test/models/pirate.rb6
1 files changed, 6 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