From 691aa20280456c332bfaaf69b58adc86fd86a2b8 Mon Sep 17 00:00:00 2001 From: Pratik Naik Date: Mon, 13 Oct 2008 19:01:37 +0200 Subject: Ensure methods called on association proxies respect access control. [#1083 state:resolved] [Adam Milligan, Pratik] --- activerecord/test/models/club.rb | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'activerecord/test/models/club.rb') 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 -- cgit v1.2.3