mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
2b4a9735d8
The test runner was updated to make use of autorun. This caused the `bin/test` scripts to run Minitest twice.
17 lines
372 B
Ruby
17 lines
372 B
Ruby
$: << File.expand_path("test", COMPONENT_ROOT)
|
|
|
|
require "bundler"
|
|
Bundler.setup
|
|
|
|
require "rails/test_unit/minitest_plugin"
|
|
|
|
module Rails
|
|
# Necessary to get rerun-snippts working.
|
|
def self.root
|
|
@root ||= Pathname.new(COMPONENT_ROOT)
|
|
end
|
|
end
|
|
|
|
Rails::TestUnitReporter.executable = "bin/test"
|
|
Minitest.run_via[:rails] = true
|
|
require "active_support/testing/autorun"
|