aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2012-01-14 21:28:57 +0000
committerJon Leighton <j@jonathanleighton.com>2012-01-16 21:17:18 +0000
commit46ea4442f3abc33d15e03487bae1c80346eab49a (patch)
tree7aef0835c456052e9d03823d9ae90a9b38738e4e /activerecord/test
parenta84a20e1cd2133932dd1bd33f862aa2605cc821e (diff)
downloadrails-46ea4442f3abc33d15e03487bae1c80346eab49a.tar.gz
rails-46ea4442f3abc33d15e03487bae1c80346eab49a.tar.bz2
rails-46ea4442f3abc33d15e03487bae1c80346eab49a.zip
infer references from Relation#order
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/cases/relations_test.rb22
1 files changed, 21 insertions, 1 deletions
diff --git a/activerecord/test/cases/relations_test.rb b/activerecord/test/cases/relations_test.rb
index d8599b1e6d..6d75f31f35 100644
--- a/activerecord/test/cases/relations_test.rb
+++ b/activerecord/test/cases/relations_test.rb
@@ -1176,17 +1176,37 @@ class RelationTest < ActiveRecord::TestCase
assert !scope.eager_loading?
end
- def test_automatically_added_references
+ def test_automatically_added_where_references
scope = Post.where(:comments => { :body => "Bla" })
assert_equal ['comments'], scope.references_values
scope = Post.where('comments.body' => 'Bla')
assert_equal ['comments'], scope.references_values
+ end
+ def test_automatically_added_having_references
scope = Post.having(:comments => { :body => "Bla" })
assert_equal ['comments'], scope.references_values
scope = Post.having('comments.body' => 'Bla')
assert_equal ['comments'], scope.references_values
end
+
+ def test_automatically_added_order_references
+ scope = Post.order('comments.body')
+ assert_equal ['comments'], scope.references_values
+
+ scope = Post.order('comments.body', 'yaks.body')
+ assert_equal ['comments', 'yaks'], scope.references_values
+
+ # Don't infer yaks, let's not go down that road again...
+ scope = Post.order('comments.body, yaks.body')
+ assert_equal ['comments'], scope.references_values
+
+ scope = Post.order('comments.body asc')
+ assert_equal ['comments'], scope.references_values
+
+ scope = Post.order('foo(comments.body)')
+ assert_equal [], scope.references_values
+ end
end