aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/adapters/postgresql
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/cases/adapters/postgresql')
-rw-r--r--activerecord/test/cases/adapters/postgresql/hstore_test.rb28
1 files changed, 26 insertions, 2 deletions
diff --git a/activerecord/test/cases/adapters/postgresql/hstore_test.rb b/activerecord/test/cases/adapters/postgresql/hstore_test.rb
index 7267536142..e03c938a25 100644
--- a/activerecord/test/cases/adapters/postgresql/hstore_test.rb
+++ b/activerecord/test/cases/adapters/postgresql/hstore_test.rb
@@ -45,9 +45,33 @@ class PostgresqlHstoreTest < ActiveRecord::TestCase
end
def test_create
- hash = { 'a' => 'b', '1' => '2' }
+ assert_cycle_hstore('a' => 'b', '1' => '2')
+ end
+
+ def test_quotes
+ assert_cycle_hstore('a' => 'b"ar', '1"foo' => '2')
+ end
+
+ def test_whitespace
+ assert_cycle_hstore('a b' => 'b ar', '1"foo' => '2')
+ end
+
+ def test_backslash
+ assert_cycle_hstore('a\\b' => 'b\\ar', '1"foo' => '2')
+ end
+
+ def test_comma
+ assert_cycle_hstore('a, b' => 'bar', '1"foo' => '2')
+ end
+
+ def test_arrow
+ assert_cycle_hstore('a=>b' => 'bar', '1"foo' => '2')
+ end
+
+ private
+ def assert_cycle_hstore hash
x = Hstore.create!(:tags => hash)
x.reload
- assert_equal hash, x.tags
+ assert_equal(hash, x.tags)
end
end