mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Test ignored_columns
value is inheritable by subclasses
This commit is contained in:
parent
a69f423e8b
commit
207c37a1ec
2 changed files with 10 additions and 0 deletions
|
@ -1444,17 +1444,24 @@ class BasicsTest < ActiveRecord::TestCase
|
|||
cache_columns = Developer.connection.schema_cache.columns_hash(Developer.table_name)
|
||||
assert_includes cache_columns.keys, "first_name"
|
||||
assert_not_includes Developer.columns_hash.keys, "first_name"
|
||||
assert_not_includes SubDeveloper.columns_hash.keys, "first_name"
|
||||
end
|
||||
|
||||
test "ignored columns have no attribute methods" do
|
||||
refute Developer.new.respond_to?(:first_name)
|
||||
refute Developer.new.respond_to?(:first_name=)
|
||||
refute Developer.new.respond_to?(:first_name?)
|
||||
refute SubDeveloper.new.respond_to?(:first_name)
|
||||
refute SubDeveloper.new.respond_to?(:first_name=)
|
||||
refute SubDeveloper.new.respond_to?(:first_name?)
|
||||
end
|
||||
|
||||
test "ignored columns don't prevent explicit declaration of attribute methods" do
|
||||
assert Developer.new.respond_to?(:last_name)
|
||||
assert Developer.new.respond_to?(:last_name=)
|
||||
assert Developer.new.respond_to?(:last_name?)
|
||||
assert SubDeveloper.new.respond_to?(:last_name)
|
||||
assert SubDeveloper.new.respond_to?(:last_name=)
|
||||
assert SubDeveloper.new.respond_to?(:last_name?)
|
||||
end
|
||||
end
|
||||
|
|
|
@ -87,6 +87,9 @@ class Developer < ActiveRecord::Base
|
|||
private :track_instance_count
|
||||
end
|
||||
|
||||
class SubDeveloper < Developer
|
||||
end
|
||||
|
||||
class AuditLog < ActiveRecord::Base
|
||||
belongs_to :developer, validate: true
|
||||
belongs_to :unvalidated_developer, class_name: "Developer"
|
||||
|
|
Loading…
Reference in a new issue