diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-08-09 11:16:12 -0700 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-08-09 11:16:12 -0700 |
commit | 4f5f59a492bd32afa476ac6b51ca5295b70fe246 (patch) | |
tree | a3ee3dfc6847b330803162ab320751c5e4f42b20 /activerecord/test | |
parent | 0053b2a1c497832da23f6dcb3ea628f3c8bb4d30 (diff) | |
parent | 5ef02de131d1d655f15673cbf5593589d97bf675 (diff) | |
download | rails-4f5f59a492bd32afa476ac6b51ca5295b70fe246.tar.gz rails-4f5f59a492bd32afa476ac6b51ca5295b70fe246.tar.bz2 rails-4f5f59a492bd32afa476ac6b51ca5295b70fe246.zip |
Merge pull request #11820 from vipulnsward/remove_s2b
Remove redundant `string_to_binary` from type-casting
Diffstat (limited to 'activerecord/test')
-rw-r--r-- | activerecord/test/cases/quoting_test.rb | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/activerecord/test/cases/quoting_test.rb b/activerecord/test/cases/quoting_test.rb index 85fbe01416..44b2064110 100644 --- a/activerecord/test/cases/quoting_test.rb +++ b/activerecord/test/cases/quoting_test.rb @@ -184,25 +184,6 @@ module ActiveRecord assert_equal "'lo\\\\l'", @quoter.quote('lo\l', FakeColumn.new(:binary)) end - def test_quote_binary_with_string_to_binary - col = Class.new(FakeColumn) { - def string_to_binary(value) - 'foo' - end - }.new(:binary) - assert_equal "'foo'", @quoter.quote('lo\l', col) - end - - def test_quote_as_mb_chars_binary_column_with_string_to_binary - col = Class.new(FakeColumn) { - def string_to_binary(value) - 'foo' - end - }.new(:binary) - string = ActiveSupport::Multibyte::Chars.new('lo\l') - assert_equal "'foo'", @quoter.quote(string, col) - end - def test_string_with_crazy_column assert_equal "'lo\\\\l'", @quoter.quote('lo\l', FakeColumn.new(:foo)) end |