aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/test/class_inheritable_attributes_test.rb
blob: 3419ffbd9a7c3a9ad5267e11e70db92e464c787e (plain) (tree)
1
2
3
                   
                       
                                                     



























                                                                             
   
require 'test/unit'
require 'abstract_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