diff options
author | Rick Olson <technoweenie@gmail.com> | 2006-10-02 19:12:57 +0000 |
---|---|---|
committer | Rick Olson <technoweenie@gmail.com> | 2006-10-02 19:12:57 +0000 |
commit | 928c84b65b6d34ca9cbfd698c1c01f8517d54ee1 (patch) | |
tree | edf512edd4624651d47c3d027203968340cea449 /activesupport/test | |
parent | 297ac55b295bd73f9f862e608639e62a9c444e84 (diff) | |
download | rails-928c84b65b6d34ca9cbfd698c1c01f8517d54ee1.tar.gz rails-928c84b65b6d34ca9cbfd698c1c01f8517d54ee1.tar.bz2 rails-928c84b65b6d34ca9cbfd698c1c01f8517d54ee1.zip |
Fix issue with #class_inheritable_accessor saving updates to the parent class when initialized with an Array or Hash [mojombo]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5218 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/test')
-rw-r--r-- | activesupport/test/class_inheritable_attributes_test.rb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/activesupport/test/class_inheritable_attributes_test.rb b/activesupport/test/class_inheritable_attributes_test.rb index 54e533e964..048b86135c 100644 --- a/activesupport/test/class_inheritable_attributes_test.rb +++ b/activesupport/test/class_inheritable_attributes_test.rb @@ -137,4 +137,34 @@ class ClassInheritableAttributesTest < Test::Unit::TestCase assert_equal 'b', @klass.b assert_equal 'B', @sub.b end + + def test_array_inheritance + @klass.class_inheritable_accessor :a + @klass.a = [] + + @sub = eval("class SubbyArray < @klass; end; SubbyArray") + + assert_equal [], @klass.a + assert_equal [], @sub.a + + @sub.a << :first + + assert_equal [:first], @sub.a + assert_equal [], @klass.a + end + + def test_array_inheritance + @klass.class_inheritable_accessor :a + @klass.a = {} + + @sub = eval("class SubbyHash < @klass; end; SubbyHash") + + assert_equal Hash.new, @klass.a + assert_equal Hash.new, @sub.a + + @sub.a[:first] = :first + + assert_equal 1, @sub.a.keys.size + assert_equal 0, @klass.a.keys.size + end end |