mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
ff7ab3bc78
* Move check from generated helper to test_help.rb, so that all applications can benefit * Rather than just raising when the test schema has pending migrations, try to load in the schema and only raise if there are pending migrations afterwards * Opt out of the check by setting config.active_record.maintain_test_schema = false * Deprecate db:test:* tasks. The test helper is now fully responsible for maintaining the test schema, so we don't need rake tasks for this. This is also a speed improvement since we're no longer reloading the test database on every call to "rake test".
42 lines
1.2 KiB
Ruby
42 lines
1.2 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 'active_support/testing/autorun'
|
|
require 'active_support/test_case'
|
|
require 'action_controller/test_case'
|
|
require 'action_dispatch/testing/integration'
|
|
require 'rails/generators/test_case'
|
|
|
|
# Config Rails backtrace in tests.
|
|
require 'rails/backtrace_cleaner'
|
|
if ENV["BACKTRACE"].nil?
|
|
Minitest.backtrace_filter = Rails.backtrace_cleaner
|
|
end
|
|
|
|
if defined?(ActiveRecord::Base)
|
|
ActiveRecord::Migration.maintain_test_schema!
|
|
|
|
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(*fixture_set_names, &block)
|
|
FixtureSet.create_fixtures(ActiveSupport::TestCase.fixture_path, fixture_set_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
|