aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2018-03-13 03:43:41 +0900
committerRyuta Kamizono <kamipo@gmail.com>2018-03-22 03:12:03 +0900
commita481603480ba0db44c85ab1ef64f3c0a34c16457 (patch)
treee799cee11270f23fbc2e1f0ddc0bac2d5b209a4c /activerecord
parent57996716d7d79d4f222d79e2b0cf2a842219f2ed (diff)
downloadrails-a481603480ba0db44c85ab1ef64f3c0a34c16457.tar.gz
rails-a481603480ba0db44c85ab1ef64f3c0a34c16457.tar.bz2
rails-a481603480ba0db44c85ab1ef64f3c0a34c16457.zip
Add `QueryingMethodsDelegationTest` to cover query methods delegation
It makes to ease to detect a future regression as long as the methods are covered by this test.
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/test/cases/relation/delegation_test.rb28
1 files changed, 28 insertions, 0 deletions
diff --git a/activerecord/test/cases/relation/delegation_test.rb b/activerecord/test/cases/relation/delegation_test.rb
index 2696d1bb00..3f3d41980c 100644
--- a/activerecord/test/cases/relation/delegation_test.rb
+++ b/activerecord/test/cases/relation/delegation_test.rb
@@ -54,4 +54,32 @@ module ActiveRecord
Comment.all
end
end
+
+ class QueryingMethodsDelegationTest < ActiveRecord::TestCase
+ QUERYING_METHODS = [
+ :find, :take, :take!, :first, :first!, :last, :last!, :exists?, :any?, :many?, :none?, :one?,
+ :second, :second!, :third, :third!, :fourth, :fourth!, :fifth, :fifth!, :forty_two, :forty_two!, :third_to_last, :third_to_last!, :second_to_last, :second_to_last!,
+ :first_or_create, :first_or_create!, :first_or_initialize,
+ :find_or_create_by, :find_or_create_by!, :create_or_find_by, :create_or_find_by!, :find_or_initialize_by,
+ :find_by, :find_by!,
+ :destroy_all, :delete_all, :update_all,
+ :find_each, :find_in_batches, :in_batches,
+ :select, :group, :order, :except, :reorder, :limit, :offset, :joins, :left_joins, :left_outer_joins, :or,
+ :where, :rewhere, :preload, :eager_load, :includes, :from, :lock, :readonly, :extending,
+ :having, :create_with, :distinct, :references, :none, :unscope, :merge,
+ :count, :average, :minimum, :maximum, :sum, :calculate,
+ :pluck, :pick, :ids,
+ ]
+
+ def test_delegate_querying_methods
+ klass = Class.new(ActiveRecord::Base) do
+ self.table_name = "posts"
+ end
+
+ QUERYING_METHODS.each do |method|
+ assert_respond_to klass.all, method
+ assert_respond_to klass, method
+ end
+ end
+ end
end