diff options
author | Tan Huynh <danhuynhdev@gmail.com> | 2018-03-20 13:02:23 +0700 |
---|---|---|
committer | Tan Huynh <danhuynhdev@gmail.com> | 2018-03-23 08:01:46 +0700 |
commit | 3f297be72b0a774d07cea3aa243f81cdbd6db2a3 (patch) | |
tree | 354ac6804301119667ea3705c56f627ff517f96a /activerecord/test/cases | |
parent | 57e145387ba57602afb0907f2a3897d37089dc4e (diff) | |
download | rails-3f297be72b0a774d07cea3aa243f81cdbd6db2a3.tar.gz rails-3f297be72b0a774d07cea3aa243f81cdbd6db2a3.tar.bz2 rails-3f297be72b0a774d07cea3aa243f81cdbd6db2a3.zip |
Add custom prefix to ActiveRecord::Store accessors
Add a prefix option to ActiveRecord::Store.store_accessor and
ActiveRecord::Store.store. This option allows stores to have identical keys
with different accessors.
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r-- | activerecord/test/cases/store_test.rb | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/activerecord/test/cases/store_test.rb b/activerecord/test/cases/store_test.rb index a30d13632a..3bd480cfbd 100644 --- a/activerecord/test/cases/store_test.rb +++ b/activerecord/test/cases/store_test.rb @@ -8,7 +8,12 @@ class StoreTest < ActiveRecord::TestCase fixtures :'admin/users' setup do - @john = Admin::User.create!(name: "John Doe", color: "black", remember_login: true, height: "tall", is_a_good_guy: true) + @john = Admin::User.create!( + name: "John Doe", color: "black", remember_login: true, + height: "tall", is_a_good_guy: true, + parent_name: "Quinn", partner_name: "Dallas", + partner_birthday: "1997-11-1" + ) end test "reading store attributes through accessors" do @@ -24,6 +29,21 @@ class StoreTest < ActiveRecord::TestCase assert_equal "37signals.com", @john.homepage end + test "reading store attributes through accessors with prefix" do + assert_equal "Quinn", @john.parent_name + assert_nil @john.parent_birthday + assert_equal "Dallas", @john.partner_name + assert_equal "1997-11-1", @john.partner_birthday + end + + test "writing store attributes through accessors with prefix" do + @john.partner_name = "River" + @john.partner_birthday = "1999-2-11" + + assert_equal "River", @john.partner_name + assert_equal "1999-2-11", @john.partner_birthday + end + test "accessing attributes not exposed by accessors" do @john.settings[:icecream] = "graeters" @john.save |