()
| 95 | |
| 96 | |
| 97 | def test_join_no_arg(): |
| 98 | items = [1, 2, 3] |
| 99 | result = [None] |
| 100 | pm.eval("(result, arr) => {result[0] = arr.join()}")(result, items) |
| 101 | assert result[0] == '1,2,3' |
| 102 | |
| 103 | |
| 104 | def test_join_empty_array(): |
nothing calls this directly
no outgoing calls
no test coverage detected