()
| 265 | |
| 266 | |
| 267 | def test_concat_two_arrays(): |
| 268 | items = [1, 2, 3] |
| 269 | result = [None] |
| 270 | pm.eval("(result, arr) => {result[0] = arr.concat([7,8], [0,1])}")(result, items) |
| 271 | assert items == [1, 2, 3] |
| 272 | assert result[0] == [1, 2, 3, 7, 8, 0, 1] |
| 273 | |
| 274 | |
| 275 | def test_concat_mix(): |
nothing calls this directly
no outgoing calls
no test coverage detected