mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
fc0df967d7
HOME is not set. [ruby-core:33867] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30382 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
48 lines
1.3 KiB
Ruby
48 lines
1.3 KiB
Ruby
require 'rubygems'
|
|
require 'test/unit'
|
|
require 'tmpdir'
|
|
require 'fileutils'
|
|
require 'rdoc/ri/paths'
|
|
require_relative '../ruby/envutil'
|
|
|
|
class TestRDocRIPaths < Test::Unit::TestCase
|
|
|
|
def setup
|
|
RDoc::RI::Paths.instance_variable_set :@gemdirs, %w[/nonexistent/gemdir]
|
|
end
|
|
|
|
def teardown
|
|
RDoc::RI::Paths.instance_variable_set :@gemdirs, nil
|
|
end
|
|
|
|
def test_class_path_nonexistent
|
|
path = RDoc::RI::Paths.path true, true, true, true, '/nonexistent'
|
|
|
|
refute_includes path, '/nonexistent'
|
|
end
|
|
|
|
def test_class_raw_path
|
|
path = RDoc::RI::Paths.raw_path true, true, true, true
|
|
|
|
assert_equal RDoc::RI::Paths::SYSDIR, path.shift
|
|
assert_equal RDoc::RI::Paths::SITEDIR, path.shift
|
|
assert_equal RDoc::RI::Paths::HOMEDIR, path.shift
|
|
assert_equal '/nonexistent/gemdir', path.shift
|
|
end
|
|
|
|
def test_class_raw_path_extra_dirs
|
|
path = RDoc::RI::Paths.raw_path true, true, true, true, '/nonexistent'
|
|
|
|
assert_equal '/nonexistent', path.shift
|
|
assert_equal RDoc::RI::Paths::SYSDIR, path.shift
|
|
assert_equal RDoc::RI::Paths::SITEDIR, path.shift
|
|
assert_equal RDoc::RI::Paths::HOMEDIR, path.shift
|
|
assert_equal '/nonexistent/gemdir', path.shift
|
|
end
|
|
|
|
def test_homeless
|
|
bug4202 = '[ruby-core:33867]'
|
|
assert(assert_in_out_err([{"HOME"=>nil}, *%w"-rrdoc/ri/paths -e;"], bug4202).success?, bug4202)
|
|
end
|
|
end
|
|
|