mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Require "active_support/core_ext/object/blank" for railties abstract unit
In #25380 I moved an `active_support/core_ext/object/blank` in the `activesupport/lib/active_support/testing/assertions.rb`, however it caused a chain reaction, resulting in failing railties tests. Moving the require to `railties/test/isolation/abstract_unit.rb` and `activesupport/test/abstract_unit.rb`.
This commit is contained in:
parent
01fc08f694
commit
4b80a96313
1 changed files with 1 additions and 0 deletions
|
@ -18,6 +18,7 @@ RAILS_FRAMEWORK_ROOT = File.expand_path("#{File.dirname(__FILE__)}/../../..")
|
||||||
|
|
||||||
# These files do not require any others and are needed
|
# These files do not require any others and are needed
|
||||||
# to run the tests
|
# to run the tests
|
||||||
|
require "active_support/core_ext/object/blank"
|
||||||
require "active_support/testing/isolation"
|
require "active_support/testing/isolation"
|
||||||
require "active_support/core_ext/kernel/reporting"
|
require "active_support/core_ext/kernel/reporting"
|
||||||
require 'tmpdir'
|
require 'tmpdir'
|
||||||
|
|
Loading…
Reference in a new issue