aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/post.rb
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2010-01-23 13:40:38 +0530
committerPratik Naik <pratiknaik@gmail.com>2010-01-23 13:41:09 +0530
commit8ff2fb6f3aa6140f5a8bd018d5919a8a1e707cda (patch)
treeddffd8e35044c3c56336819d585e0896b1d3b457 /activerecord/test/models/post.rb
parentc2e57c0bb02396cd7762d67f5dd8d6aa1e1814a9 (diff)
downloadrails-8ff2fb6f3aa6140f5a8bd018d5919a8a1e707cda.tar.gz
rails-8ff2fb6f3aa6140f5a8bd018d5919a8a1e707cda.tar.bz2
rails-8ff2fb6f3aa6140f5a8bd018d5919a8a1e707cda.zip
Make default_scope work with Relations
Diffstat (limited to 'activerecord/test/models/post.rb')
-rw-r--r--activerecord/test/models/post.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/activerecord/test/models/post.rb b/activerecord/test/models/post.rb
index f48b35486c..704313649a 100644
--- a/activerecord/test/models/post.rb
+++ b/activerecord/test/models/post.rb
@@ -100,3 +100,8 @@ end
class SubStiPost < StiPost
self.table_name = Post.table_name
end
+
+class PostWithComment < ActiveRecord::Base
+ self.table_name = 'posts'
+ default_scope where("posts.comments_count > 0").order("posts.comments_count ASC")
+end