aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/reply.rb
diff options
context:
space:
mode:
authorAdam Cooper <adam.cooper@gmail.com>2008-12-31 01:43:13 -0800
committerPratik Naik <pratiknaik@gmail.com>2009-03-06 22:05:18 +0000
commit3ca5a0f9fd7b7921bca970859da8637011b22dd1 (patch)
tree43a05f30708106cb98cab1e51dda07c8acd3352b /activerecord/test/models/reply.rb
parent984bc7a614852944808739fae09a654b6e62872e (diff)
downloadrails-3ca5a0f9fd7b7921bca970859da8637011b22dd1.tar.gz
rails-3ca5a0f9fd7b7921bca970859da8637011b22dd1.tar.bz2
rails-3ca5a0f9fd7b7921bca970859da8637011b22dd1.zip
Ensure belongs_to association with a counter cache in name spaced model works [#1678 state:resolved]
Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
Diffstat (limited to 'activerecord/test/models/reply.rb')
-rw-r--r--activerecord/test/models/reply.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/activerecord/test/models/reply.rb b/activerecord/test/models/reply.rb
index 812bc1f535..1c990acab6 100644
--- a/activerecord/test/models/reply.rb
+++ b/activerecord/test/models/reply.rb
@@ -37,3 +37,9 @@ end
class SillyReply < Reply
belongs_to :reply, :foreign_key => "parent_id", :counter_cache => :replies_count
end
+
+module Web
+ class Reply < Web::Topic
+ belongs_to :topic, :foreign_key => "parent_id", :counter_cache => true, :class_name => 'Web::Topic'
+ end
+end \ No newline at end of file