[PRISM] Do not shell out in prism tests

This commit is contained in:
Kevin Newton 2024-02-01 13:43:32 -05:00
Родитель ae0441358b
Коммит d3ba14a31d
1 изменённых файлов: 9 добавлений и 2 удалений

Просмотреть файл

@ -720,8 +720,15 @@ module Prism
end
def test_InterpolatedXStringNode
assert_prism_eval('`echo #{1}`')
assert_prism_eval('`echo #{"100"}`')
assert_prism_eval(<<~RUBY)
def self.`(command) = command * 2
`echo \#{1}`
RUBY
assert_prism_eval(<<~RUBY)
def self.`(command) = command * 2
`echo \#{"100"}`
RUBY
end
def test_MatchLastLineNode