()
| 148 | |
| 149 | |
| 150 | def test_attribute_variable_replace(): |
| 151 | src = """ |
| 152 | x = "hello" |
| 153 | x.replace("l", "s") |
| 154 | """ |
| 155 | tree = process_source_code(src) |
| 156 | assert isinstance(tree, String) |
| 157 | assert str(tree) == "hesso" |
| 158 | |
| 159 | |
| 160 | def test_variable_propagation(): |
nothing calls this directly
no test coverage detected