()
| 643 | |
| 644 | |
| 645 | def test_copyWithin_no_args(): |
| 646 | items = [1, 2, 3] |
| 647 | result = [None] |
| 648 | pm.eval("(result, arr) => {result[0] = arr.copyWithin()}")(result, items) |
| 649 | assert items == [1, 2, 3] |
| 650 | |
| 651 | |
| 652 | def test_copyWithin_target_only_overwrite_all(): |
nothing calls this directly
no outgoing calls
no test coverage detected