diff options
author | Sean Griffin <sean@thoughtbot.com> | 2014-05-30 09:29:22 -0700 |
---|---|---|
committer | Sean Griffin <sean@thoughtbot.com> | 2014-06-01 11:33:58 -0600 |
commit | 90c8be76a7d00475be5ff4db2eeedde5cc936c2d (patch) | |
tree | 1b02b3ccffbef9296aaa6660caed5c64fcb362aa /activerecord/test/cases/adapters/postgresql | |
parent | 260c384bdb539265b31d3937df48e528acb50800 (diff) | |
download | rails-90c8be76a7d00475be5ff4db2eeedde5cc936c2d.tar.gz rails-90c8be76a7d00475be5ff4db2eeedde5cc936c2d.tar.bz2 rails-90c8be76a7d00475be5ff4db2eeedde5cc936c2d.zip |
Remove most code related to serialized properties
Nearly completely implemented in terms of custom properties.
`_before_type_cast` now stores the raw serialized string consistently,
which removes the need to keep track of "state". The following is now
consistently true:
- `model.serialized == model.reload.serialized`
- A model can be dumped and loaded infinitely without changing
- A model can be saved and reloaded infinitely without changing
Diffstat (limited to 'activerecord/test/cases/adapters/postgresql')
-rw-r--r-- | activerecord/test/cases/adapters/postgresql/composite_test.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activerecord/test/cases/adapters/postgresql/composite_test.rb b/activerecord/test/cases/adapters/postgresql/composite_test.rb index ecccbf10e6..d804d1fa97 100644 --- a/activerecord/test/cases/adapters/postgresql/composite_test.rb +++ b/activerecord/test/cases/adapters/postgresql/composite_test.rb @@ -93,6 +93,7 @@ class PostgresqlCompositeWithCustomOIDTest < ActiveRecord::TestCase end def type_cast_for_write(value) + return if value.nil? "(#{value.city},#{value.street})" end end |