aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/association_inheritance_reload.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/association_inheritance_reload.rb')
-rw-r--r--activerecord/test/association_inheritance_reload.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/activerecord/test/association_inheritance_reload.rb b/activerecord/test/association_inheritance_reload.rb
deleted file mode 100644
index 5577f86eb3..0000000000
--- a/activerecord/test/association_inheritance_reload.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-require 'abstract_unit'
-require 'fixtures/company'
-
-class AssociationInheritanceReloadTest < ActiveSupport::TestCase
- fixtures :companies
-
- def test_set_attributes
- assert_equal ["errors.add_on_empty('name', \"can't be empty\")"], Firm.read_inheritable_attribute("validate"), "Second run"
- # ActiveRecord::Base.reset_column_information_and_inheritable_attributes_for_all_subclasses
- remove_subclass_of(ActiveRecord::Base)
- load 'fixtures/company.rb'
- assert_equal ["errors.add_on_empty('name', \"can't be empty\")"], Firm.read_inheritable_attribute("validate"), "Second run"
- end
-end \ No newline at end of file