aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/author.rb
diff options
context:
space:
mode:
authorFrederick Cheung <frederick.cheung@gmail.com>2008-05-07 21:35:41 +0100
committerPratik Naik <pratiknaik@gmail.com>2008-05-11 20:01:14 +0100
commit3f0dccbbc7c98938349650033ff9a41a814d300d (patch)
treec19906d9c79d3023c7769103584dd8572c5e5870 /activerecord/test/models/author.rb
parent8f2f88f128104355b100487008800aeb369ca425 (diff)
downloadrails-3f0dccbbc7c98938349650033ff9a41a814d300d.tar.gz
rails-3f0dccbbc7c98938349650033ff9a41a814d300d.tar.bz2
rails-3f0dccbbc7c98938349650033ff9a41a814d300d.zip
Ensure hm:t preloading honours reflection options. [#137 state:resolved]
Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
Diffstat (limited to 'activerecord/test/models/author.rb')
-rw-r--r--activerecord/test/models/author.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/test/models/author.rb b/activerecord/test/models/author.rb
index 2918139f7f..f63af27403 100644
--- a/activerecord/test/models/author.rb
+++ b/activerecord/test/models/author.rb
@@ -17,6 +17,10 @@ class Author < ActiveRecord::Base
end
has_many :comments, :through => :posts
has_many :comments_containing_the_letter_e, :through => :posts, :source => :comments
+ has_many :comments_with_order_and_conditions, :through => :posts, :source => :comments, :order => 'comments.body', :conditions => "comments.body like 'Thank%'"
+ has_many :comments_with_include, :through => :posts, :source => :comments, :include => :post
+
+
has_many :comments_desc, :through => :posts, :source => :comments, :order => 'comments.id DESC'
has_many :limited_comments, :through => :posts, :source => :comments, :limit => 1
has_many :funky_comments, :through => :posts, :source => :comments