diff options
author | Sean Griffin <sean@thoughtbot.com> | 2014-06-13 07:16:15 -0600 |
---|---|---|
committer | Sean Griffin <sean@thoughtbot.com> | 2014-06-13 07:16:47 -0600 |
commit | d569d0baad8b4c30b2144de2af1c98f2e91a2099 (patch) | |
tree | 69d206a7bba8e39e1510b91fe5e795fd12929c1e /activerecord/test/cases/adapters/postgresql | |
parent | 9a0c2e5c626cfbde527013bd0cfcec682baa48fa (diff) | |
download | rails-d569d0baad8b4c30b2144de2af1c98f2e91a2099.tar.gz rails-d569d0baad8b4c30b2144de2af1c98f2e91a2099.tar.bz2 rails-d569d0baad8b4c30b2144de2af1c98f2e91a2099.zip |
PG arrays should type cast user input
We guarantee that `model.value` does not change after
`model.save && model.reload`. This requires type casting user input for
non-string types.
Diffstat (limited to 'activerecord/test/cases/adapters/postgresql')
-rw-r--r-- | activerecord/test/cases/adapters/postgresql/array_test.rb | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/activerecord/test/cases/adapters/postgresql/array_test.rb b/activerecord/test/cases/adapters/postgresql/array_test.rb index 66750deb68..0b1e3295cc 100644 --- a/activerecord/test/cases/adapters/postgresql/array_test.rb +++ b/activerecord/test/cases/adapters/postgresql/array_test.rb @@ -97,8 +97,13 @@ class PostgresqlArrayTest < ActiveRecord::TestCase def test_type_cast_integers x = PgArray.new(ratings: ['1', '2']) - assert x.save! - assert_equal(['1', '2'], x.ratings) + + assert_equal([1, 2], x.ratings) + + x.save! + x.reload + + assert_equal([1, 2], x.ratings) end def test_select_with_strings |