()
| 568 | |
| 569 | |
| 570 | def test_fill_with_start(): |
| 571 | items = [1, 2, 3] |
| 572 | result = [None] |
| 573 | pm.eval("(result, arr) => {result[0] = arr.fill(8,1)}")(result, items) |
| 574 | assert items == [1, 8, 8] |
| 575 | |
| 576 | |
| 577 | def test_fill_with_start_negative(): |
nothing calls this directly
no outgoing calls
no test coverage detected