()
| 68 | |
| 69 | |
| 70 | def test_binop_string_vars(): |
| 71 | src = """ |
| 72 | x = "hello_" |
| 73 | y = "world" |
| 74 | x + y |
| 75 | """ |
| 76 | tree = process_source_code(src) |
| 77 | assert isinstance(tree, String) |
| 78 | assert str(tree) == "hello_world" |
| 79 | |
| 80 | |
| 81 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected