()
| 144 | |
| 145 | |
| 146 | def test_join_utf8(): |
| 147 | prices = ["¥7", 500, 8123, 12] |
| 148 | result = [None] |
| 149 | pm.eval("(result, arr) => {result[0] = arr.join()}")(result, prices) |
| 150 | assert result[0] == '¥7,500,8123,12' |
| 151 | |
| 152 | # toString |
| 153 |
nothing calls this directly
no outgoing calls
no test coverage detected