aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/company.rb
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2008-10-16 23:17:49 +0200
committerPratik Naik <pratiknaik@gmail.com>2008-10-16 23:17:49 +0200
commit95c609357e78106e9673931d3f60d8ff3cc0a0cd (patch)
tree82f682f2129f41e6829ef17aeb899843f11c3e71 /activerecord/test/models/company.rb
parent9cb5400871b660e2c6d1654346650f07bb52a0c0 (diff)
downloadrails-95c609357e78106e9673931d3f60d8ff3cc0a0cd.tar.gz
rails-95c609357e78106e9673931d3f60d8ff3cc0a0cd.tar.bz2
rails-95c609357e78106e9673931d3f60d8ff3cc0a0cd.zip
Ensure association proxy responds to private class methods defined in associated class. [#1083]
Diffstat (limited to 'activerecord/test/models/company.rb')
-rw-r--r--activerecord/test/models/company.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/activerecord/test/models/company.rb b/activerecord/test/models/company.rb
index 62d20861f3..0e3fafa37c 100644
--- a/activerecord/test/models/company.rb
+++ b/activerecord/test/models/company.rb
@@ -112,6 +112,14 @@ class Client < Company
def rating?
query_attribute :rating
end
+
+ class << self
+ private
+
+ def private_method
+ "darkness"
+ end
+ end
end