summaryrefslogtreecommitdiff
path: root/test/irb/test_ruby_lex.rb
diff options
context:
space:
mode:
authoraycabta <aycabta@gmail.com>2020-06-01 19:22:50 +0900
committeraycabta <aycabta@gmail.com>2020-07-22 02:31:46 +0900
commit1dfd24a7fc4e2877d49d2a3326925080e2972cf1 (patch)
tree462c8922830ec02662db3eeed8c69b1ba8cbb445 /test/irb/test_ruby_lex.rb
parent78ccab25306d15c325baa0761d9505ac23956f22 (diff)
[ruby/irb] Suppress incomplete encoding magic comment error
https://github.com/ruby/irb/commit/443e90af80
Diffstat (limited to 'test/irb/test_ruby_lex.rb')
-rw-r--r--test/irb/test_ruby_lex.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/irb/test_ruby_lex.rb b/test/irb/test_ruby_lex.rb
index 367d1e204a..bc5b4feaf7 100644
--- a/test/irb/test_ruby_lex.rb
+++ b/test/irb/test_ruby_lex.rb
@@ -139,5 +139,18 @@ module TestIRB
assert_indenting(lines, row.new_line_spaces, true)
end
end
+
+ def test_incomplete_encoding_magic_comment
+ input_with_correct_indents = [
+ Row.new(%q(#encoding:u), nil, 0),
+ ]
+
+ 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)
+ end
+ end
end
end