()
| 85 | |
| 86 | |
| 87 | def test_pop_ignore_extra_args(): |
| 88 | items = [1, 2, 3] |
| 89 | result = [None] |
| 90 | pm.eval("(result, arr) => {result[0] = arr.pop(1)}")(result, items) |
| 91 | assert items == [1, 2] |
| 92 | assert result[0] == 3 |
| 93 | |
| 94 | # join |
| 95 |
nothing calls this directly
no outgoing calls
no test coverage detected