()
| 248 | |
| 249 | |
| 250 | def test_concat_array(): |
| 251 | items = [1, 2, 3] |
| 252 | result = [None] |
| 253 | pm.eval("(result, arr) => {result[0] = arr.concat([4,5])}")(result, items) |
| 254 | assert items == [1, 2, 3] |
| 255 | assert result[0] == [1, 2, 3, 4, 5] |
| 256 | |
| 257 | |
| 258 | def test_concat_empty_arg(): |
nothing calls this directly
no outgoing calls
no test coverage detected