summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authoraycabta <aycabta@gmail.com>2021-09-08 05:20:48 +0900
committergit <svn-admin@ruby-lang.org>2021-09-08 05:24:04 +0900
commit580f340c3393a811b8018e19360937a758212d4e (patch)
tree44d1f4fcad0a8d08ed72339e3aee7b48ad9a91ed /test
parentbc24af0f355c71ccc8e57ec95f771fa0737bd27d (diff)
[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
Diffstat (limited to 'test')
-rw-r--r--test/irb/test_completion.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/irb/test_completion.rb b/test/irb/test_completion.rb
index c3462f4196..1ae1b7a0b9 100644
--- a/test/irb/test_completion.rb
+++ b/test/irb/test_completion.rb
@@ -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