summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2020-02-12 14:38:40 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-02-12 14:38:40 +0900
commit166c4a6a2838995e3465ab3ce263bf0b5239ddde (patch)
treed14c0cd52bb47c842105aeaf04766d926b551144 /test
parent16f5d63bad783ac202a0533249f06deab436aded (diff)
Revert "[ruby/irb] Add test_complete_symbol"
This reverts commit 3af3431c2c145134996e66f3d8d9ade8ad81bde0.
Diffstat (limited to 'test')
-rw-r--r--test/irb/test_completion.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/irb/test_completion.rb b/test/irb/test_completion.rb
index cb6da5b1f2..b23f73ea30 100644
--- a/test/irb/test_completion.rb
+++ b/test/irb/test_completion.rb
@@ -26,12 +26,6 @@ module TestIRB
assert_empty(IRB::InputCompletor.retrieve_completion_data("1i.positi", bind: binding))
end
- def test_complete_symbol
- :aiueo
- assert_include(IRB::InputCompletor.retrieve_completion_data(":a", bind: binding), ":aiueo")
- assert_empty(IRB::InputCompletor.retrieve_completion_data(":abcdefg", bind: binding))
- end
-
def test_complete_symbol_failure
assert_nil(IRB::InputCompletor::PerfectMatchedProc.(":aiueo", bind: binding))
end