aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
authorMauricio Linhares <mauricio.linhares@gmail.com>2014-02-01 01:11:03 -0300
committerMauricio Linhares <mauricio.linhares@gmail.com>2014-02-01 09:38:43 -0300
commita34c10f73e739142794a2e6366328051fcc91238 (patch)
treef9a8d762068a351c1a00bf422ac56cdfb689ffe3 /activerecord/test
parent9b2a017aa82f95911280ed597e4bf3193c9399e9 (diff)
downloadrails-a34c10f73e739142794a2e6366328051fcc91238.tar.gz
rails-a34c10f73e739142794a2e6366328051fcc91238.tar.bz2
rails-a34c10f73e739142794a2e6366328051fcc91238.zip
Fixes issue with parsing whitespace content back from database - fixes #13907
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/cases/adapters/postgresql/array_test.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/activerecord/test/cases/adapters/postgresql/array_test.rb b/activerecord/test/cases/adapters/postgresql/array_test.rb
index d71e2aa2bb..3090f4478f 100644
--- a/activerecord/test/cases/adapters/postgresql/array_test.rb
+++ b/activerecord/test/cases/adapters/postgresql/array_test.rb
@@ -93,6 +93,18 @@ class PostgresqlArrayTest < ActiveRecord::TestCase
assert_cycle(:tags, [[['1'], ['2']], [['2'], ['3']]])
end
+ def test_with_empty_strings
+ assert_cycle(:tags, [ '1', '2', '', '4', '', '5' ])
+ end
+
+ def test_with_multi_dimensional_empty_strings
+ assert_cycle(:tags, [[['1', '2'], ['', '4'], ['', '5']]])
+ end
+
+ def test_with_arbitrary_whitespace
+ assert_cycle(:tags, [[['1', '2'], [' ', '4'], [' ', '5']]])
+ end
+
def test_multi_dimensional_with_integers
assert_cycle(:ratings, [[[1], [7]], [[8], [10]]])
end