1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Suppress "literal in condition" warnings

This commit is contained in:
Nobuyoshi Nakada 2019-06-30 09:54:21 +09:00
parent 4a063546e7
commit 5f736d4319
No known key found for this signature in database
GPG key ID: 4BC7D6DF58D8DF60

View file

@ -286,11 +286,11 @@ class TestAst < Test::Unit::TestCase
end
def test_while
node = RubyVM::AbstractSyntaxTree.parse('1 while 1')
node = RubyVM::AbstractSyntaxTree.parse('1 while qux')
_, _, body = *node.children
assert_equal(:WHILE, body.type)
type1 = body.children[2]
node = RubyVM::AbstractSyntaxTree.parse('begin 1 end while 1')
node = RubyVM::AbstractSyntaxTree.parse('begin 1 end while qux')
_, _, body = *node.children
assert_equal(:WHILE, body.type)
type2 = body.children[2]
@ -298,11 +298,11 @@ class TestAst < Test::Unit::TestCase
end
def test_until
node = RubyVM::AbstractSyntaxTree.parse('1 until 1')
node = RubyVM::AbstractSyntaxTree.parse('1 until qux')
_, _, body = *node.children
assert_equal(:UNTIL, body.type)
type1 = body.children[2]
node = RubyVM::AbstractSyntaxTree.parse('begin 1 end until 1')
node = RubyVM::AbstractSyntaxTree.parse('begin 1 end until qux')
_, _, body = *node.children
assert_equal(:UNTIL, body.type)
type2 = body.children[2]