From a379cb2fb5c61f3108593ff96a74ca9c99300b09 Mon Sep 17 00:00:00 2001 From: Bogdan Gusiev Date: Wed, 8 Feb 2012 16:37:27 +0200 Subject: AR::Relation#pluck: improve to work with joins --- activerecord/test/cases/calculations_test.rb | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'activerecord/test/cases/calculations_test.rb') diff --git a/activerecord/test/cases/calculations_test.rb b/activerecord/test/cases/calculations_test.rb index 7c9ebf528e..91d0af4872 100644 --- a/activerecord/test/cases/calculations_test.rb +++ b/activerecord/test/cases/calculations_test.rb @@ -478,4 +478,15 @@ class CalculationsTest < ActiveRecord::TestCase def test_pluck_with_qualified_column_name assert_equal [1,2,3,4], Topic.order(:id).pluck("topics.id") end + + def test_pluck_auto_table_name_prefix + c = Company.create!(:name => "test", :contracts => [Contract.new]) + assert_equal [c.id], Company.joins(:contracts).pluck(:id) + end + + def test_pluck_not_auto_table_name_prefix_if_column_joined + c = Company.create!(:name => "test", :contracts => [Contract.new(:developer_id => 7)]) + # No chance for typecast here + assert_equal ["7"], Company.joins(:contracts).pluck(:developer_id) + end end -- cgit v1.2.3