diff options
author | Pratik Naik <pratiknaik@gmail.com> | 2008-10-13 19:01:37 +0200 |
---|---|---|
committer | Pratik Naik <pratiknaik@gmail.com> | 2008-10-13 19:02:34 +0200 |
commit | 691aa20280456c332bfaaf69b58adc86fd86a2b8 (patch) | |
tree | 5841c2f0211b021d473fdba3eb03ac487ef50130 /activerecord/test/models | |
parent | 42cbd710bb116998f92029adacb45698905a2e3b (diff) | |
download | rails-691aa20280456c332bfaaf69b58adc86fd86a2b8.tar.gz rails-691aa20280456c332bfaaf69b58adc86fd86a2b8.tar.bz2 rails-691aa20280456c332bfaaf69b58adc86fd86a2b8.zip |
Ensure methods called on association proxies respect access control. [#1083 state:resolved] [Adam Milligan, Pratik]
Diffstat (limited to 'activerecord/test/models')
-rw-r--r-- | activerecord/test/models/club.rb | 6 | ||||
-rw-r--r-- | activerecord/test/models/company.rb | 13 |
2 files changed, 18 insertions, 1 deletions
diff --git a/activerecord/test/models/club.rb b/activerecord/test/models/club.rb index 3ddb691dfb..6e7cdd643a 100644 --- a/activerecord/test/models/club.rb +++ b/activerecord/test/models/club.rb @@ -4,4 +4,10 @@ class Club < ActiveRecord::Base has_many :current_memberships has_one :sponsor has_one :sponsored_member, :through => :sponsor, :source => :sponsorable, :source_type => "Member" + + private + + def private_method + "I'm sorry sir, this is a *private* club, not a *pirate* club" + end end
\ No newline at end of file diff --git a/activerecord/test/models/company.rb b/activerecord/test/models/company.rb index 0eb8ae0a15..62d20861f3 100644 --- a/activerecord/test/models/company.rb +++ b/activerecord/test/models/company.rb @@ -13,6 +13,12 @@ class Company < AbstractCompany def arbitrary_method "I am Jack's profound disappointment" end + + private + + def private_method + "I am Jack's innermost fears and aspirations" + end end module Namespaced @@ -129,9 +135,14 @@ class Account < ActiveRecord::Base true end - protected def validate errors.add_on_empty "credit_limit" end + + private + + def private_method + "Sir, yes sir!" + end end |