()
| 50 | |
| 51 | |
| 52 | def test_binop_string(): |
| 53 | src = """ |
| 54 | "hello_" + "world" |
| 55 | """ |
| 56 | tree = process_source_code(src) |
| 57 | assert isinstance(tree, String) |
| 58 | assert str(tree) == "hello_world" |
| 59 | |
| 60 | |
| 61 | def test_binop_numbers(): |
nothing calls this directly
no test coverage detected