mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
7fc1edd790
This removes all deprecated classes in ActionController related to Routing, Abstract Request/Response and Integration/IntegrationTest. All tests and docs were changed to ActionDispatch instead of ActionController.
52 lines
1.5 KiB
Ruby
52 lines
1.5 KiB
Ruby
# Make double-sure the RAILS_ENV is not set to production,
|
|
# so fixtures aren't loaded into that environment
|
|
abort("Abort testing: Your Rails environment is running in production mode!") if Rails.env.production?
|
|
|
|
require 'test/unit'
|
|
require 'active_support/core_ext/kernel/requires'
|
|
require 'active_support/test_case'
|
|
require 'action_controller/test_case'
|
|
require 'action_dispatch/testing/integration'
|
|
|
|
if defined?(Test::Unit::Util::BacktraceFilter) && ENV['BACKTRACE'].nil?
|
|
require 'rails/backtrace_cleaner'
|
|
Test::Unit::Util::BacktraceFilter.module_eval { include Rails::BacktraceFilterForTestUnit }
|
|
end
|
|
|
|
if defined?(ActiveRecord)
|
|
require 'active_record/test_case'
|
|
|
|
class ActiveSupport::TestCase
|
|
include ActiveRecord::TestFixtures
|
|
self.fixture_path = "#{Rails.root}/test/fixtures/"
|
|
end
|
|
|
|
ActionDispatch::IntegrationTest.fixture_path = ActiveSupport::TestCase.fixture_path
|
|
|
|
def create_fixtures(*table_names, &block)
|
|
Fixtures.create_fixtures(ActiveSupport::TestCase.fixture_path, table_names, {}, &block)
|
|
end
|
|
end
|
|
|
|
class ActionController::TestCase
|
|
setup do
|
|
@routes = Rails.application.routes
|
|
end
|
|
end
|
|
|
|
class ActionDispatch::IntegrationTest
|
|
setup do
|
|
@routes = Rails.application.routes
|
|
end
|
|
end
|
|
|
|
begin
|
|
require_library_or_gem 'ruby-debug'
|
|
Debugger.start
|
|
if Debugger.respond_to?(:settings)
|
|
Debugger.settings[:autoeval] = true
|
|
Debugger.settings[:autolist] = 1
|
|
end
|
|
rescue LoadError
|
|
# ruby-debug wasn't available so neither can the debugging be
|
|
end
|