mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
fd96503f7b
Changed since 55bf0ef1aa
.
12 lines
411 B
Ruby
12 lines
411 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Should be done in rubygems test files?
|
|
ENV["GEM_SKIP"] = ENV["GEM_HOME"] = ENV["GEM_PATH"] = "".freeze
|
|
ENV.delete("RUBY_CODESIGN")
|
|
|
|
# Get bundled gems on load path
|
|
Dir.glob("#{__dir__}/../.bundle/gems/*/*.gemspec")
|
|
.reject {|f| f =~ /minitest|test-unit|power_assert/ }
|
|
.map {|f| $LOAD_PATH.unshift File.join(File.dirname(f), "lib") }
|
|
|
|
require_relative '../tool/test/runner'
|