()
| 222 | |
| 223 | |
| 224 | def test_unshift_one_arg(): |
| 225 | items = [1, 2, 3] |
| 226 | result = [None] |
| 227 | pm.eval("(result, arr) => {result[0] = arr.unshift(6)}")(result, items) |
| 228 | assert items == [6, 1, 2, 3] |
| 229 | assert result[0] == 4 |
| 230 | |
| 231 | |
| 232 | def test_unshift_two_args(): |
nothing calls this directly
no outgoing calls
no test coverage detected