diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2012-05-09 16:12:07 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2012-05-09 16:12:07 -0700 |
commit | df0324f7ddee9ebe6231a488a61ca513678b4e84 (patch) | |
tree | 29354bd4ba5f0e4e49bd2d2774e0f21967300628 /activerecord/test/cases/connection_adapters | |
parent | 9bf1a0db4acbbf9e8e6f707250269185224e7efe (diff) | |
parent | 12c44fe7f566990923fd0814acaa76b83309c832 (diff) | |
download | rails-df0324f7ddee9ebe6231a488a61ca513678b4e84.tar.gz rails-df0324f7ddee9ebe6231a488a61ca513678b4e84.tar.bz2 rails-df0324f7ddee9ebe6231a488a61ca513678b4e84.zip |
Merge pull request #5362 from zenprogrammer/quoting_bug
Fixed bug in ActiveRecord that caused classes to be quoted incorrectly
Diffstat (limited to 'activerecord/test/cases/connection_adapters')
-rw-r--r-- | activerecord/test/cases/connection_adapters/quoting_test.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/activerecord/test/cases/connection_adapters/quoting_test.rb b/activerecord/test/cases/connection_adapters/quoting_test.rb new file mode 100644 index 0000000000..f523cea9ca --- /dev/null +++ b/activerecord/test/cases/connection_adapters/quoting_test.rb @@ -0,0 +1,11 @@ +module ActiveRecord + module ConnectionAdapters + module Quoting + class QuotingTest < ActiveRecord::TestCase + def test_quoting_classes + assert_equal "'Object'", AbstractAdapter.new(nil).quote(Object) + end + end + end + end +end
\ No newline at end of file |