From 1f7b557890c41e59b461d42a5fb9e1f25da9b33d Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Fri, 20 Nov 2020 18:30:05 +0900 Subject: Update expected IRB result --- test/irb/test_color.rb | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'test/irb') diff --git a/test/irb/test_color.rb b/test/irb/test_color.rb index cb90d29c9d..03c4ab74a8 100644 --- a/test/irb/test_color.rb +++ b/test/irb/test_color.rb @@ -34,7 +34,6 @@ module TestIRB '"foo#{a} #{b}"' => "#{RED}#{BOLD}\"#{CLEAR}#{RED}foo#{CLEAR}#{RED}\#{#{CLEAR}a#{RED}}#{CLEAR}#{RED} #{CLEAR}#{RED}\#{#{CLEAR}b#{RED}}#{CLEAR}#{RED}#{BOLD}\"#{CLEAR}", '/r#{e}g/' => "#{RED}#{BOLD}/#{CLEAR}#{RED}r#{CLEAR}#{RED}\#{#{CLEAR}e#{RED}}#{CLEAR}#{RED}g#{CLEAR}#{RED}#{BOLD}/#{CLEAR}", "'a\nb'" => "#{RED}#{BOLD}'#{CLEAR}#{RED}a#{CLEAR}\n#{RED}b#{CLEAR}#{RED}#{BOLD}'#{CLEAR}", - "[1]]]\u0013" => "[1]]]^S", "%[str]" => "#{RED}#{BOLD}%[#{CLEAR}#{RED}str#{CLEAR}#{RED}#{BOLD}]#{CLEAR}", "%Q[str]" => "#{RED}#{BOLD}%Q[#{CLEAR}#{RED}str#{CLEAR}#{RED}#{BOLD}]#{CLEAR}", "%q[str]" => "#{RED}#{BOLD}%q[#{CLEAR}#{RED}str#{CLEAR}#{RED}#{BOLD}]#{CLEAR}", @@ -78,6 +77,17 @@ module TestIRB }) end + # specific to Ruby 3.0+ + if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.0.0') + tests.merge!({ + "[1]]]\u0013" => "[#{BLUE}#{BOLD}1#{CLEAR}]#{RED}#{REVERSE}]#{CLEAR}#{RED}#{REVERSE}]#{CLEAR}#{RED}#{REVERSE}^S#{CLEAR}", + }) + else + tests.merge!({ + "[1]]]\u0013" => "[1]]]^S", + }) + end + tests.each do |code, result| if colorize_code_supported? actual = with_term { IRB::Color.colorize_code(code, complete: true) } -- cgit v1.2.3