()
| 273 | |
| 274 | |
| 275 | def test_concat_mix(): |
| 276 | items = [1, 2, 3] |
| 277 | result = [None] |
| 278 | pm.eval("(result, arr) => {result[0] = arr.concat([7,8], true, [0,1])}")(result, items) |
| 279 | assert items == [1, 2, 3] |
| 280 | assert result[0] == [1, 2, 3, 7, 8, True, 0, 1] |
| 281 | |
| 282 | |
| 283 | def test_concat_object_element(): |
nothing calls this directly
no outgoing calls
no test coverage detected