mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
testing crazy object quoting
This commit is contained in:
@@ -144,6 +144,18 @@ module ActiveRecord
|
||||
assert_equal "'lol'", @quoter.quote(DateTime.now, nil)
|
||||
assert_equal "'lol'", @quoter.quote(DateTime.now, Object.new)
|
||||
end
|
||||
|
||||
def test_crazy_object
|
||||
crazy = Class.new { def to_s; 'lol' end }.new
|
||||
assert_equal "'lol'", @quoter.quote(crazy, nil)
|
||||
assert_equal "'lol'", @quoter.quote(crazy, Object.new)
|
||||
end
|
||||
|
||||
def test_crazy_object_calls_quote_string
|
||||
crazy = Class.new { def to_s; 'lo\l' end }.new
|
||||
assert_equal "'lo\\\\l'", @quoter.quote(crazy, nil)
|
||||
assert_equal "'lo\\\\l'", @quoter.quote(crazy, Object.new)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user