()
| 41 | |
| 42 | |
| 43 | def test_replace_string(): |
| 44 | src = """ |
| 45 | "something".replace("s", "a") |
| 46 | """ |
| 47 | tree = process_source_code(src) |
| 48 | assert isinstance(tree, String) |
| 49 | assert str(tree) == "aomething" |
| 50 | |
| 51 | |
| 52 | def test_binop_string(): |
nothing calls this directly
no test coverage detected