1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[ruby/irb] Use "csv" for test

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 committed by git
parent bc24af0f35
commit 580f340c33

View file

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