Skip to content

Commit

Permalink
Use "csv" for test
Browse files Browse the repository at this point in the history
The "csv" doesn't conflict with other stdlib names in any Ruby processing
system.
  • Loading branch information
aycabta committed Sep 7, 2021
1 parent 74d6357 commit 49203a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/irb/test_completion.rb
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ def test_complete_require
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
Expand Down

0 comments on commit 49203a1

Please sign in to comment.