From f4a556f4f1bf82f944ef576fdb3acd755e567368 Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Wed, 20 Jan 2021 01:10:00 -0800 Subject: [ruby/irb] Remove pp-specific stub from TestColor because it was for TestColorPrinter https://github.com/ruby/irb/commit/7569206fd4 --- test/irb/test_color.rb | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/test/irb/test_color.rb b/test/irb/test_color.rb index ea689b3e29..9976008124 100644 --- a/test/irb/test_color.rb +++ b/test/irb/test_color.rb @@ -17,19 +17,6 @@ module TestIRB MAGENTA = "\e[35m" CYAN = "\e[36m" - def setup - @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) - end - def test_colorize_code # Common behaviors. Warn parser error, but do not warn compile error. tests = { -- cgit v1.2.3