()
| 2418 | |
| 2419 | |
| 2420 | def test_entries_next(): |
| 2421 | items = ['a', 'b', 'c'] |
| 2422 | result = [0] |
| 2423 | pm.eval("(result, arr) => {result[0] = arr.entries(); result[0] = result[0].next().value}")(result, items) |
| 2424 | assert items == ['a', 'b', 'c'] |
| 2425 | assert result[0] == [0, 'a'] |
| 2426 | |
| 2427 | |
| 2428 | def test_entries_next_next(): |
nothing calls this directly
no outgoing calls
no test coverage detected