mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
18a3774438
With default_gem support in RubyGems GEM_SKIP prevents loading of built-in gems. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38096 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
17 lines
429 B
Ruby
17 lines
429 B
Ruby
require 'rbconfig'
|
|
|
|
require 'test/unit'
|
|
|
|
src_testdir = File.dirname(File.realpath(__FILE__))
|
|
$LOAD_PATH << src_testdir
|
|
module Gem
|
|
end
|
|
class Gem::TestCase < MiniTest::Unit::TestCase
|
|
@@project_dir = File.dirname($LOAD_PATH.last)
|
|
end
|
|
|
|
ENV["GEM_SKIP"] = ENV["GEM_HOME"] = ENV["GEM_PATH"] = "".freeze
|
|
|
|
require_relative 'profile_test_all' if ENV['RUBY_TEST_ALL_PROFILE'] == 'true'
|
|
|
|
exit Test::Unit::AutoRunner.run(true, src_testdir)
|