From 5a1866caff1ec7d924c4101ea05e9d460b6ef3ae Mon Sep 17 00:00:00 2001 From: aycabta Date: Sun, 3 Jan 2021 03:25:47 +0900 Subject: [ruby/irb] Use Ripper::Lexer#scan to take broken tokens ref. https://github.com/ruby/reline/pull/242 https://github.com/ruby/irb/commit/54f90cb6c9 --- test/irb/test_ruby_lex.rb | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'test/irb') diff --git a/test/irb/test_ruby_lex.rb b/test/irb/test_ruby_lex.rb index 69fa1f3f33..0c7c9f2704 100644 --- a/test/irb/test_ruby_lex.rb +++ b/test/irb/test_ruby_lex.rb @@ -367,6 +367,25 @@ module TestIRB end end + def test_broken_heredoc + if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.7.0') + skip 'This test needs Ripper::Lexer#scan to take broken tokens' + end + input_with_correct_indents = [ + Row.new(%q(def foo), nil, 2, 1), + Row.new(%q( <<~Q), nil, 2, 1), + Row.new(%q( Qend), nil, 2, 1), + ] + + lines = [] + input_with_correct_indents.each do |row| + lines << row.content + assert_indenting(lines, row.current_line_spaces, false) + assert_indenting(lines, row.new_line_spaces, true) + assert_nesting_level(lines, row.nesting_level) + end + end + PromptRow = Struct.new(:prompt, :content) class MockIO_DynamicPrompt -- cgit v1.2.3