[ruby/irb] Test should not depend on user's irbrc file

(https://github.com/ruby/irb/pull/714)

https://github.com/ruby/irb/commit/02703c46f9
This commit is contained in:
tomoya ishida 2023-09-17 07:27:00 +09:00 коммит произвёл git
Родитель 380b42fe6a
Коммит cd67c0d204
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -110,6 +110,10 @@ module TestIRB
yield
# Test should not depend on user's irbrc file
@envs["HOME"] ||= tmp_dir
@envs["XDG_CONFIG_HOME"] ||= tmp_dir
PTY.spawn(@envs.merge("TERM" => "dumb"), *cmd) do |read, write, pid|
Timeout.timeout(TIMEOUT_SEC) do
while line = safe_gets(read)