mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
b5eb0b6cc3
This reverts commit 2f52f96988
.
Conflicts:
actionmailer/test/abstract_unit.rb
actionview/test/abstract_unit.rb
activemodel/test/cases/helper.rb
activerecord/test/cases/helper.rb
activesupport/test/abstract_unit.rb
railties/test/abstract_unit.rb
24 lines
745 B
Ruby
24 lines
745 B
Ruby
require File.expand_path('../../../../load_paths', __FILE__)
|
|
|
|
require 'config'
|
|
require 'active_model'
|
|
require 'active_support/core_ext/string/access'
|
|
|
|
# Show backtraces for deprecated behavior for quicker cleanup.
|
|
ActiveSupport::Deprecation.debug = true
|
|
|
|
# Disable available locale checks to avoid warnings running the test suite.
|
|
I18n.enforce_available_locales = false
|
|
|
|
require 'active_support/testing/autorun'
|
|
|
|
require 'mocha/setup' # FIXME: stop using mocha
|
|
|
|
# Skips the current run on Rubinius using Minitest::Assertions#skip
|
|
def rubinius_skip(message = '')
|
|
skip message if RUBY_ENGINE == 'rbx'
|
|
end
|
|
# Skips the current run on JRuby using Minitest::Assertions#skip
|
|
def jruby_skip(message = '')
|
|
skip message if defined?(JRUBY_VERSION)
|
|
end
|