aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
authorSławosz Sławiński <slawosz@gmail.com>2011-07-23 21:35:16 +0200
committerSławosz Sławiński <slawosz@cubiware.com>2011-07-26 14:57:47 +0200
commit04cc446d178653d362510e79a22db5300d463161 (patch)
tree72e82bb0dd388a7a962a1887e60a67394732bea9 /activerecord/test
parent8e0061128e8946d6e6fab68c078517db668ef050 (diff)
downloadrails-04cc446d178653d362510e79a22db5300d463161.tar.gz
rails-04cc446d178653d362510e79a22db5300d463161.tar.bz2
rails-04cc446d178653d362510e79a22db5300d463161.zip
allow select to have multiple arguments
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/cases/base_test.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/activerecord/test/cases/base_test.rb b/activerecord/test/cases/base_test.rb
index f2f5b73626..84b66fdf49 100644
--- a/activerecord/test/cases/base_test.rb
+++ b/activerecord/test/cases/base_test.rb
@@ -123,6 +123,11 @@ class BasicsTest < ActiveRecord::TestCase
assert_equal Topic.all.map(&:id).sort, topic_ids
end
+ def test_select_symbol_for_many_arguments
+ topics = Topic.select(:id, :author_name).map{|topic| [topic.id, topic.author_name]}.sort
+ assert_equal Topic.all.map{|topic| [topic.id,topic.author_name]}.sort, topics
+ end
+
def test_table_exists
assert !NonExistentTable.table_exists?
assert Topic.table_exists?