From 91276036ecf2745a44399b11a9779b8bec7c7fbb Mon Sep 17 00:00:00 2001 From: Miguel Grazziotin Date: Wed, 3 Jun 2015 21:09:34 -0300 Subject: [#20338] adding tests to ensure the order clause takes precedence --- activerecord/test/cases/finder_test.rb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'activerecord/test/cases') diff --git a/activerecord/test/cases/finder_test.rb b/activerecord/test/cases/finder_test.rb index f9d75fc937..445b20ca2a 100644 --- a/activerecord/test/cases/finder_test.rb +++ b/activerecord/test/cases/finder_test.rb @@ -58,6 +58,24 @@ class FinderTest < ActiveRecord::TestCase assert_equal 'The Fourth Topic of the day', records[0].title assert_equal 'The Second Topic of the day', records[1].title assert_equal 'The Fifth Topic of the day', records[2].title + + records = Topic.find(['4','2','5']) + assert_equal 'The Fourth Topic of the day', records[0].title + assert_equal 'The Second Topic of the day', records[1].title + assert_equal 'The Fifth Topic of the day', records[2].title + + records = Topic.find('4','2','5') + assert_equal 'The Fourth Topic of the day', records[0].title + assert_equal 'The Second Topic of the day', records[1].title + assert_equal 'The Fifth Topic of the day', records[2].title + end + + def test_find_with_ids_and_order_clause + # The order clause takes precedence over the informed ids + records = Topic.order(:author_name).find([5,3,1]) + assert_equal 'The Third Topic of the day', records[0].title + assert_equal 'The First Topic', records[1].title + assert_equal 'The Fifth Topic of the day', records[2].title end def test_find_passing_active_record_object_is_deprecated -- cgit v1.2.3