aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/adapters/postgresql/quoting_test.rb
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2011-04-13 16:05:30 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2011-04-14 13:37:39 -0700
commita22ceaeefa454a0dc7ae8277dda86e4caff5f99c (patch)
tree4b45066d74b3d697e2143d6f09cc8efdc5bb4b62 /activerecord/test/cases/adapters/postgresql/quoting_test.rb
parenta0d4c8d1bf2198608e2e319ff833560f88d20855 (diff)
downloadrails-a22ceaeefa454a0dc7ae8277dda86e4caff5f99c.tar.gz
rails-a22ceaeefa454a0dc7ae8277dda86e4caff5f99c.tar.bz2
rails-a22ceaeefa454a0dc7ae8277dda86e4caff5f99c.zip
mysql type cast should return integers when typecasting true / false
Diffstat (limited to 'activerecord/test/cases/adapters/postgresql/quoting_test.rb')
-rw-r--r--activerecord/test/cases/adapters/postgresql/quoting_test.rb25
1 files changed, 25 insertions, 0 deletions
diff --git a/activerecord/test/cases/adapters/postgresql/quoting_test.rb b/activerecord/test/cases/adapters/postgresql/quoting_test.rb
new file mode 100644
index 0000000000..172055f15c
--- /dev/null
+++ b/activerecord/test/cases/adapters/postgresql/quoting_test.rb
@@ -0,0 +1,25 @@
+require "cases/helper"
+
+module ActiveRecord
+ module ConnectionAdapters
+ class PostgreSQLAdapter
+ class QuotingTest < ActiveRecord::TestCase
+ def setup
+ @conn = ActiveRecord::Base.connection
+ end
+
+ def test_type_cast_true
+ c = Column.new(nil, 1, 'boolean')
+ assert_equal 't', @conn.type_cast(true, nil)
+ assert_equal 't', @conn.type_cast(true, c)
+ end
+
+ def test_type_cast_false
+ c = Column.new(nil, 1, 'boolean')
+ assert_equal 'f', @conn.type_cast(false, nil)
+ assert_equal 'f', @conn.type_cast(false, c)
+ end
+ end
+ end
+ end
+end