()
| 137 | |
| 138 | |
| 139 | def test_join_null(): |
| 140 | items = [pm.null, 2, 3] |
| 141 | result = [None] |
| 142 | pm.eval("(result, arr) => {result[0] = arr.join()}")(result, items) |
| 143 | assert result[0] == ',2,3' |
| 144 | |
| 145 | |
| 146 | def test_join_utf8(): |
nothing calls this directly
no outgoing calls
no test coverage detected