aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/associations/has_many_associations_test.rb
diff options
context:
space:
mode:
authorJan De Poorter <jan@defv.be>2009-03-09 13:02:31 +0100
committerDavid Heinemeier Hansson <david@loudthinking.com>2009-03-09 13:02:31 +0100
commit277c799d58be4b3e0e885d7b3fd6d954facc111b (patch)
treec127a63d516cf8ef7fd5ab9b495e00ae1c522ba3 /activerecord/test/cases/associations/has_many_associations_test.rb
parent9442d843ff2ed8e7845707a95482a43aec8efe95 (diff)
downloadrails-277c799d58be4b3e0e885d7b3fd6d954facc111b.tar.gz
rails-277c799d58be4b3e0e885d7b3fd6d954facc111b.tar.bz2
rails-277c799d58be4b3e0e885d7b3fd6d954facc111b.zip
Fix find_by_last when order is given [#2127 state:committed]
Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
Diffstat (limited to 'activerecord/test/cases/associations/has_many_associations_test.rb')
-rw-r--r--activerecord/test/cases/associations/has_many_associations_test.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/test/cases/associations/has_many_associations_test.rb b/activerecord/test/cases/associations/has_many_associations_test.rb
index 3f33baf88c..b7fa9d9d7c 100644
--- a/activerecord/test/cases/associations/has_many_associations_test.rb
+++ b/activerecord/test/cases/associations/has_many_associations_test.rb
@@ -70,6 +70,10 @@ class HasManyAssociationsTest < ActiveRecord::TestCase
assert_equal 2, companies(:first_firm).limited_clients.find(:all, :limit => nil).size
end
+ def test_dynamic_find_last_without_specified_order
+ assert_equal companies(:second_client), companies(:first_firm).unsorted_clients.find_last_by_type('Client')
+ end
+
def test_dynamic_find_should_respect_association_order
assert_equal companies(:second_client), companies(:first_firm).clients_sorted_desc.find(:first, :conditions => "type = 'Client'")
assert_equal companies(:second_client), companies(:first_firm).clients_sorted_desc.find_by_type('Client')