(src, result)
| 89 | ("'hello_world'[-1]", 'd'), |
| 90 | )) |
| 91 | def test_string_slice(src, result): |
| 92 | tree = process_source_code(src) |
| 93 | assert isinstance(tree, String) |
| 94 | assert str(tree) == result |
| 95 | |
| 96 | |
| 97 | def test_if_condition_dont_modify_data(): |
nothing calls this directly
no test coverage detected