()
| 635 | |
| 636 | |
| 637 | def test_copyWithin(): |
| 638 | items = [1, 2, 3] |
| 639 | result = [None] |
| 640 | pm.eval("(result, arr) => {result[0] = arr.copyWithin(0,1)}")(result, items) |
| 641 | assert items == [2, 3, 3] |
| 642 | assert items is result[0] |
| 643 | |
| 644 | |
| 645 | def test_copyWithin_no_args(): |
nothing calls this directly
no outgoing calls
no test coverage detected