()
| 596 | |
| 597 | |
| 598 | def test_fill_with_stop(): |
| 599 | items = [1, 2, 3] |
| 600 | result = [None] |
| 601 | pm.eval("(result, arr) => {result[0] = arr.fill(8,1,2)}")(result, items) |
| 602 | assert items == [1, 8, 3] |
| 603 | |
| 604 | |
| 605 | def test_fill_with_negative_stop(): |
nothing calls this directly
no outgoing calls
no test coverage detected