From b2159f7c38262f5d0746a3cfb9b33ea9d62ed813 Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Mon, 18 Jan 2021 23:35:31 -0800 Subject: [ruby/irb] Stub a screen size for tests https://github.com/ruby/irb/commit/6663057083 --- test/irb/test_color.rb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/test/irb/test_color.rb b/test/irb/test_color.rb index d035e443a8..459802181e 100644 --- a/test/irb/test_color.rb +++ b/test/irb/test_color.rb @@ -18,6 +18,21 @@ module TestIRB MAGENTA = "\e[35m" CYAN = "\e[36m" + def setup + super + @get_screen_size = Reline.method(:get_screen_size) + Reline.instance_eval { undef :get_screen_size } + def Reline.get_screen_size + [36, 80] + end + end + + def teardown + Reline.instance_eval { undef :get_screen_size } + Reline.define_singleton_method(:get_screen_size, @get_screen_size) + super + end + def test_colorize_code # Common behaviors. Warn parser error, but do not warn compile error. tests = { -- cgit v1.2.3