提交 661637e5 编写于 作者: D David Heinemeier Hansson

Delegate #rewhere to all on the class like all other relation methods

上级 fe977341
...@@ -7,7 +7,7 @@ module Querying ...@@ -7,7 +7,7 @@ module Querying
delegate :destroy, :destroy_all, :delete, :delete_all, :update, :update_all, to: :all delegate :destroy, :destroy_all, :delete, :delete_all, :update, :update_all, to: :all
delegate :find_each, :find_in_batches, to: :all delegate :find_each, :find_in_batches, to: :all
delegate :select, :group, :order, :except, :reorder, :limit, :offset, :joins, delegate :select, :group, :order, :except, :reorder, :limit, :offset, :joins,
:where, :preload, :eager_load, :includes, :from, :lock, :readonly, :where, :rewhere, :preload, :eager_load, :includes, :from, :lock, :readonly,
:having, :create_with, :uniq, :distinct, :references, :none, :unscope, to: :all :having, :create_with, :uniq, :distinct, :references, :none, :unscope, to: :all
delegate :count, :average, :minimum, :maximum, :sum, :calculate, to: :all delegate :count, :average, :minimum, :maximum, :sum, :calculate, to: :all
delegate :pluck, :ids, to: :all delegate :pluck, :ids, to: :all
......
...@@ -24,6 +24,10 @@ def test_where_copies_bind_params ...@@ -24,6 +24,10 @@ def test_where_copies_bind_params
} }
end end
def test_rewhere_on_root
assert_equal posts(:welcome), Post.rewhere(title: 'Welcome to the weblog').first
end
def test_belongs_to_shallow_where def test_belongs_to_shallow_where
author = Author.new author = Author.new
author.id = 1 author.id = 1
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册