Sha256: 210399f3089a50b5af83ae9671d4ea14cb5dcfa0d724309368e7d5531a4381a2

Contents?: true

Size: 763 Bytes

Versions: 101

Compression:

Stored size: 763 Bytes

Contents

require 'test/unit'
require "cases/helper"
require 'active_support/core_ext/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 < ActiveRecord::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

Version data entries

101 entries across 98 versions & 20 rubygems

Version Path
radiant-0.8.0 vendor/rails/activerecord/test/cases/class_inheritable_attributes_test.rb