diff options
author | Piotr Sarnacki <drogus@gmail.com> | 2011-07-26 16:12:17 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2011-08-13 16:22:17 -0700 |
commit | 182a4284183c63e9cb8fa879620ce01c98e111d3 (patch) | |
tree | 23ca5edae919d57908ba9bc52793b30d70ee7b40 /activerecord/test | |
parent | e7f7439d068f587db91e959ef803606cae9e7cc5 (diff) | |
download | rails-182a4284183c63e9cb8fa879620ce01c98e111d3.tar.gz rails-182a4284183c63e9cb8fa879620ce01c98e111d3.tar.bz2 rails-182a4284183c63e9cb8fa879620ce01c98e111d3.zip |
Revert "allow select to have multiple arguments"
This reverts commit 04cc446d178653d362510e79a22db5300d463161.
I reverted it because apparently we want to use: select([:a, :b])
instead of select(:a, :b), but there was no tests for that form.
Diffstat (limited to 'activerecord/test')
-rw-r--r-- | activerecord/test/cases/base_test.rb | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/activerecord/test/cases/base_test.rb b/activerecord/test/cases/base_test.rb index 84b66fdf49..f2f5b73626 100644 --- a/activerecord/test/cases/base_test.rb +++ b/activerecord/test/cases/base_test.rb @@ -123,11 +123,6 @@ 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? |