aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/test/testing_env.rb
diff options
context:
space:
mode:
authorMarkus Reiter2017-02-28 14:33:39 +0100
committerMarkus Reiter2017-02-28 22:48:57 +0100
commit487294f8155cbbcc1af22757d632ca352c24d6b8 (patch)
tree3c6012460b8959314e5f17934df29ff0c965f0e8 /Library/Homebrew/test/testing_env.rb
parentfa34aa2a21473a4e4d360e9561f8ca89f2415ded (diff)
downloadbrew-487294f8155cbbcc1af22757d632ca352c24d6b8.tar.bz2
Remove Minitest.
Diffstat (limited to 'Library/Homebrew/test/testing_env.rb')
-rw-r--r--Library/Homebrew/test/testing_env.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/Library/Homebrew/test/testing_env.rb b/Library/Homebrew/test/testing_env.rb
deleted file mode 100644
index 999fa1013..000000000
--- a/Library/Homebrew/test/testing_env.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-begin
- require "minitest/autorun"
- require "minitest/reporters"
- Minitest::Reporters.use! Minitest::Reporters::DefaultReporter.new(color: true)
- require "mocha/setup"
- require "parallel_tests/test/runtime_logger"
- require "simplecov" if ENV["HOMEBREW_TESTS_COVERAGE"]
-rescue LoadError
- abort "Run `bundle install` before running the tests."
-end
-
-$LOAD_PATH.unshift(File.expand_path("#{ENV["HOMEBREW_LIBRARY"]}/Homebrew"))
-$LOAD_PATH.unshift(File.expand_path("#{ENV["HOMEBREW_LIBRARY"]}/Homebrew/test/support/lib"))
-
-require "global"
-
-require "test/support/helper/test_case"
-require "test/support/helper/integration_command_test_case"