assert indents of case and end

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63138 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2018-04-12 12:01:51 +00:00
parent 8ef4ff1b15
commit b6490ddd97

View File

@ -451,6 +451,7 @@ class TestRubyOptions < Test::Unit::TestCase
["begin rescue", "else ; end"],
["begin", "ensure ; end"],
["case nil", "when true; end"],
["case nil; when true", "end"],
].each do
|b, e = 'end'|
src = ["#{b}\n", " #{e}\n"]