aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/company_in_module.rb
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2009-03-21 19:05:09 +0000
committerPratik Naik <pratiknaik@gmail.com>2009-03-21 19:07:15 +0000
commitd758d996d1b66e2a65640f79f01ce2ac674d7ed5 (patch)
tree4d6e1ef682c76fd655acbd8a66739cf693777454 /activerecord/test/models/company_in_module.rb
parent320933205e16164ff55245aef1e95fb06e609d06 (diff)
downloadrails-d758d996d1b66e2a65640f79f01ce2ac674d7ed5.tar.gz
rails-d758d996d1b66e2a65640f79f01ce2ac674d7ed5.tar.bz2
rails-d758d996d1b66e2a65640f79f01ce2ac674d7ed5.zip
Deprecate Model#validate/validate_on_create/validate_on_update. Use Model.validate :method and likewise
Diffstat (limited to 'activerecord/test/models/company_in_module.rb')
-rw-r--r--activerecord/test/models/company_in_module.rb9
1 files changed, 6 insertions, 3 deletions
diff --git a/activerecord/test/models/company_in_module.rb b/activerecord/test/models/company_in_module.rb
index 7f02403d5a..1122c7256f 100644
--- a/activerecord/test/models/company_in_module.rb
+++ b/activerecord/test/models/company_in_module.rb
@@ -52,10 +52,13 @@ module MyApplication
i.belongs_to :nested_unqualified_billing_firm, :class_name => 'Nested::Firm'
end
+ validate :check_empty_credit_limit
+
protected
- def validate
- errors.add_on_empty "credit_limit"
- end
+
+ def check_empty_credit_limit
+ errors.add_on_empty "credit_limit"
+ end
end
end
end