ruby-changes:67594
From: aycabta <ko1@a...>
Date: Sat, 4 Sep 2021 17:48:35 +0900 (JST)
Subject: [ruby-changes:67594] 9ac32e87bb (master): [ruby/irb] Add an assertion to check completion "var.method" to get correct "class.method"
https://git.ruby-lang.org/ruby.git/commit/?id=9ac32e87bb From 9ac32e87bba3a6d873b92c587a83e78051a83839 Mon Sep 17 00:00:00 2001 From: aycabta <aycabta@g...> Date: Sat, 4 Sep 2021 05:40:15 +0900 Subject: [ruby/irb] Add an assertion to check completion "var.method" to get correct "class.method" https://github.com/ruby/irb/commit/cc1ddb37a9 --- test/irb/test_completion.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/test/irb/test_completion.rb b/test/irb/test_completion.rb index a661d68..1fd4299 100644 --- a/test/irb/test_completion.rb +++ b/test/irb/test_completion.rb @@ -88,6 +88,7 @@ module TestIRB https://github.com/ruby/ruby/blob/trunk/test/irb/test_completion.rb#L88 str_example = '' 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") + assert_equal(IRB::InputCompletor.retrieve_completion_data("str_example.to_s", bind: binding, doc_namespace: true), "String.to_s") end def test_complete_class_method -- cgit v1.1 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/