module ActiveRecord::DeprecatedArelDelegationTests
Constants
- AREL_METHODS
Public Instance Methods
test_deprecate_arel_delegation()
click to toggle source
# File activerecord/test/cases/relation/delegation_test.rb, line 32 def test_deprecate_arel_delegation AREL_METHODS.each do |method| assert_deprecated { target.public_send(method) } assert_deprecated { target.public_send(method) } end end