aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
authorYuji Hanamura <yuji.developer@gmail.com>2018-03-09 16:04:56 +0900
committerYuji Hanamura <yuji.developer@gmail.com>2018-03-09 16:04:56 +0900
commit6f4e66fefbcbf79351f41db0a75bf8aace43c1b7 (patch)
treef53275767fc47f048db0e0c4bb8ac9e88aa22fd4 /activerecord/test
parenteec723f69ad0e2e957f9c9bca350a6e032c1b58f (diff)
downloadrails-6f4e66fefbcbf79351f41db0a75bf8aace43c1b7.tar.gz
rails-6f4e66fefbcbf79351f41db0a75bf8aace43c1b7.tar.bz2
rails-6f4e66fefbcbf79351f41db0a75bf8aace43c1b7.zip
Add `delegate :pick, to: :all`
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/cases/calculations_test.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/activerecord/test/cases/calculations_test.rb b/activerecord/test/cases/calculations_test.rb
index 74228b2796..080d2a54bc 100644
--- a/activerecord/test/cases/calculations_test.rb
+++ b/activerecord/test/cases/calculations_test.rb
@@ -811,6 +811,11 @@ class CalculationsTest < ActiveRecord::TestCase
assert_nil Topic.where("1=0").pick(:author_name, :author_email_address)
end
+ def test_pick_delegate_to_all
+ cool_first = minivans(:cool_first)
+ assert_equal cool_first.color, Minivan.pick(:color)
+ end
+
def test_grouped_calculation_with_polymorphic_relation
part = ShipPart.create!(name: "has trinket")
part.trinkets.create!