mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
dc3d6eb9b4
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@624 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
33 lines
No EOL
778 B
Ruby
33 lines
No EOL
778 B
Ruby
$:.unshift(File.dirname(__FILE__) + '/../lib')
|
|
|
|
require 'test/unit'
|
|
require 'active_support/class_inheritable_attributes'
|
|
|
|
class A
|
|
include ClassInheritableAttributes
|
|
end
|
|
|
|
class B < A
|
|
write_inheritable_array "first", [ :one, :two ]
|
|
end
|
|
|
|
class C < A
|
|
write_inheritable_array "first", [ :three ]
|
|
end
|
|
|
|
class D < B
|
|
write_inheritable_array "first", [ :four ]
|
|
end
|
|
|
|
|
|
class ClassInheritableAttributesTest < Test::Unit::TestCase
|
|
def test_first_level
|
|
assert_equal [ :one, :two ], B.read_inheritable_attribute("first")
|
|
assert_equal [ :three ], C.read_inheritable_attribute("first")
|
|
end
|
|
|
|
def test_second_level
|
|
assert_equal [ :one, :two, :four ], D.read_inheritable_attribute("first")
|
|
assert_equal [ :one, :two ], B.read_inheritable_attribute("first")
|
|
end
|
|
end |