diff options
| author | Kevin Newton <kddnewton@gmail.com> | 2023-11-21 07:56:21 -0500 |
|---|---|---|
| committer | Kevin Newton <kddnewton@gmail.com> | 2023-11-21 11:35:46 -0500 |
| commit | a5b482837b743ae6121fc6ca52e5d52985ab93c8 (patch) | |
| tree | f7932033930d429880db2e2b66ef029a8b8db5eb /test/ruby | |
| parent | ddacc0852895adfe3ffec83cdb79ba21f6db169f (diff) | |
Remove string concat node in prism
Diffstat (limited to 'test/ruby')
| -rw-r--r-- | test/ruby/test_compile_prism.rb | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/ruby/test_compile_prism.rb b/test/ruby/test_compile_prism.rb index 3b10244c96..aa140085f0 100644 --- a/test/ruby/test_compile_prism.rb +++ b/test/ruby/test_compile_prism.rb @@ -417,6 +417,7 @@ module Prism def test_InterpolatedStringNode assert_prism_eval('$pit = 1; "1 #$pit 1"') assert_prism_eval('"1 #{1 + 2} 1"') + assert_prism_eval('"Prism" "::" "TestCompilePrism"') end def test_InterpolatedSymbolNode @@ -461,10 +462,6 @@ module Prism assert_prism_eval('2.times.map { /#{1}/o }') end - def test_StringConcatNode - assert_prism_eval('"Prism" "::" "TestCompilePrism"') - end - def test_StringNode assert_prism_eval('"pit"') end |
