()
| 240 | |
| 241 | |
| 242 | def test_concat_primitive(): |
| 243 | items = [1, 2, 3] |
| 244 | result = [None] |
| 245 | pm.eval("(result, arr) => {result[0] = arr.concat(4)}")(result, items) |
| 246 | assert items == [1, 2, 3] |
| 247 | assert result[0] == [1, 2, 3, 4] |
| 248 | |
| 249 | |
| 250 | def test_concat_array(): |
nothing calls this directly
no outgoing calls
no test coverage detected