1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Define the configuration at Active Support

This commit is contained in:
Rafael Mendonça França 2014-09-11 00:54:43 -03:00
parent 8edb5eeb36
commit 53e877f7d9
4 changed files with 19 additions and 10 deletions

View file

@ -70,6 +70,16 @@ module ActiveSupport
NumberHelper.eager_load!
end
@@test_order = nil
def self.test_order=(new_order)
@@test_order = new_order
end
def self.test_order
@@test_order
end
end
autoload :I18n, "active_support/i18n"

View file

@ -12,22 +12,18 @@ require 'active_support/core_ext/kernel/reporting'
require 'active_support/deprecation'
module ActiveSupport
class << self
delegate :test_order, :test_order=, to: :'ActiveSupport::TestCase'
end
class TestCase < ::Minitest::Test
Assertion = Minitest::Assertion
@@test_order = nil
class << self
def test_order=(new_order)
@@test_order = new_order
ActiveSupport.test_order = new_order
end
def test_order
if @@test_order.nil?
test_order = ActiveSupport.test_order
if test_order.nil?
ActiveSupport::Deprecation.warn "You did not specify a value for the " \
"configuration option 'active_support.test_order'. In Rails 5.0, " \
"the default value of this option will change from `:sorted` to " \
@ -42,10 +38,11 @@ module ActiveSupport
"Alternatively, you can opt into the future behavior by setting this " \
"option to `:random`."
@@test_order = :sorted
test_order = :sorted
self.test_order = test_order
end
@@test_order
test_order
end
alias :my_tests_are_order_dependent! :i_suck_and_my_tests_are_order_dependent!

View file

@ -1,3 +1,4 @@
require 'active_support'
require 'active_support/testing/autorun'
require 'rails/configuration'
require 'active_support/test_case'

View file

@ -9,6 +9,7 @@
require 'fileutils'
require 'bundler/setup' unless defined?(Bundler)
require 'active_support'
require 'active_support/testing/autorun'
require 'active_support/test_case'