()
| 2426 | |
| 2427 | |
| 2428 | def test_entries_next_next(): |
| 2429 | items = ['a', 'b', 'c'] |
| 2430 | result = [0] |
| 2431 | pm.eval("(result, arr) => {result[0] = arr.entries(); result[0].next(); result[0] = result[0].next().value}")( |
| 2432 | result, items) |
| 2433 | assert result[0] == [1, 'b'] |
| 2434 | |
| 2435 | |
| 2436 | def test_entries_next_next_undefined(): |
nothing calls this directly
no outgoing calls
no test coverage detected