The "csv" doesn't conflict with other stdlib names in any Ruby processing
system.

https://github.com/ruby/irb/commit/49203a1c83
This commit is contained in:
aycabta 2021-09-08 05:20:48 +09:00 коммит произвёл git
Родитель bc24af0f35
Коммит 580f340c33
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -69,8 +69,8 @@ module TestIRB
end
def test_complete_require_library_name_first
candidates = IRB::InputCompletor::CompletionProc.("'cgi", "require ", "")
assert_equal candidates.first, "'cgi"
candidates = IRB::InputCompletor::CompletionProc.("'csv", "require ", "")
assert_equal candidates.first, "'csv"
end
def test_complete_require_relative