()
| 214 | |
| 215 | |
| 216 | def test_unshift_zero_arg(): |
| 217 | items = [1, 2, 3] |
| 218 | result = [None] |
| 219 | pm.eval("(result, arr) => {result[0] = arr.unshift()}")(result, items) |
| 220 | assert items == [1, 2, 3] |
| 221 | assert result[0] == 3 |
| 222 | |
| 223 | |
| 224 | def test_unshift_one_arg(): |
nothing calls this directly
no outgoing calls
no test coverage detected