aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/relations_test.rb
diff options
context:
space:
mode:
authorSean Griffin <sean@seantheprogrammer.com>2015-09-21 11:36:55 -0600
committerSean Griffin <sean@seantheprogrammer.com>2015-09-21 11:37:36 -0600
commit926002a7f39ef185f4a9f9ec1264204230f895ab (patch)
treea269abe188b8b2efb46bf8ac8b084b8dabfdd283 /activerecord/test/cases/relations_test.rb
parent9cc324a3f1348430e5b6db58bbddab5090c708c8 (diff)
downloadrails-926002a7f39ef185f4a9f9ec1264204230f895ab.tar.gz
rails-926002a7f39ef185f4a9f9ec1264204230f895ab.tar.bz2
rails-926002a7f39ef185f4a9f9ec1264204230f895ab.zip
Skip the test added in 9cc324a on buggy versions of SQlite
See 7dcfc25e7c52682a4343c2ba7188a69e7c06c936 for more details
Diffstat (limited to 'activerecord/test/cases/relations_test.rb')
-rw-r--r--activerecord/test/cases/relations_test.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/activerecord/test/cases/relations_test.rb b/activerecord/test/cases/relations_test.rb
index 5aa0ea85a5..8256762f96 100644
--- a/activerecord/test/cases/relations_test.rb
+++ b/activerecord/test/cases/relations_test.rb
@@ -1897,14 +1897,4 @@ class RelationTest < ActiveRecord::TestCase
def test_relation_join_method
assert_equal 'Thank you for the welcome,Thank you again for the welcome', Post.first.comments.join(",")
end
-
- def test_selecting_aliased_attribute_quotes_column_name_when_from_is_used
- klass = Class.new(ActiveRecord::Base) do
- self.table_name = :test_with_keyword_column_name
- alias_attribute :description, :desc
- end
- klass.create!(description: "foo")
-
- assert_equal ["foo"], klass.select(:description).from(klass.all).map(&:desc)
- end
end