aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/adapter_test.rb
diff options
context:
space:
mode:
authorSean Griffin <sean@seantheprogrammer.com>2017-07-21 13:55:24 -0400
committerSean Griffin <sean@seantheprogrammer.com>2017-07-21 14:01:08 -0400
commit93c9a95e013ba7c77cf381bab9ead4a0de37e128 (patch)
tree80d9c83c1be59f8227900369673607660d43b0c0 /activerecord/test/cases/adapter_test.rb
parent84eb498f84ebc5d1be0b0db6f7bca9da3d679ca6 (diff)
downloadrails-93c9a95e013ba7c77cf381bab9ead4a0de37e128.tar.gz
rails-93c9a95e013ba7c77cf381bab9ead4a0de37e128.tar.bz2
rails-93c9a95e013ba7c77cf381bab9ead4a0de37e128.zip
Revert "Extract `bind_param` and `bind_attribute` into `ActiveRecord::TestCase`"
This reverts commit b6ad4052d18e4b29b8a092526c2beef013e2bf4f. This is not something that the majority of Active Record should be testing or care about. We should look at having fewer places rely on these details, not make it easier to rely on them.
Diffstat (limited to 'activerecord/test/cases/adapter_test.rb')
-rw-r--r--activerecord/test/cases/adapter_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/adapter_test.rb b/activerecord/test/cases/adapter_test.rb
index 827bcba121..dd031e965c 100644
--- a/activerecord/test/cases/adapter_test.rb
+++ b/activerecord/test/cases/adapter_test.rb
@@ -242,7 +242,7 @@ module ActiveRecord
def test_select_all_with_legacy_binds
post = Post.create!(title: "foo", body: "bar")
expected = @connection.select_all("SELECT * FROM posts WHERE id = #{post.id}")
- result = @connection.select_all("SELECT * FROM posts WHERE id = #{bind_param.to_sql}", nil, [[nil, post.id]])
+ result = @connection.select_all("SELECT * FROM posts WHERE id = #{Arel::Nodes::BindParam.new.to_sql}", nil, [[nil, post.id]])
assert_equal expected.to_hash, result.to_hash
end
end