summaryrefslogtreecommitdiff
path: root/test/irb
diff options
context:
space:
mode:
Diffstat (limited to 'test/irb')
-rw-r--r--test/irb/test_completion.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/irb/test_completion.rb b/test/irb/test_completion.rb
index 260b8a8892..a661d68c59 100644
--- a/test/irb/test_completion.rb
+++ b/test/irb/test_completion.rb
@@ -89,5 +89,10 @@ module TestIRB
assert_include(IRB::InputCompletor.retrieve_completion_data("str_examp", bind: binding), "str_example")
assert_equal(IRB::InputCompletor.retrieve_completion_data("str_example", bind: binding, doc_namespace: true), "String")
end
+
+ def test_complete_class_method
+ assert_include(IRB::InputCompletor.retrieve_completion_data("String.new", bind: binding), "String.new")
+ assert_equal(IRB::InputCompletor.retrieve_completion_data("String.new", bind: binding, doc_namespace: true), "String.new")
+ end
end
end