From 8daaff5dac0725c5cf62811ac4a67b21f62aca2f Mon Sep 17 00:00:00 2001 From: Aaron Patterson Date: Tue, 20 Dec 2011 13:54:10 -0600 Subject: hstores can cycle --- .../test/cases/adapters/postgresql/hstore_test.rb | 28 ++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) (limited to 'activerecord/test/cases') 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 -- cgit v1.2.3