MCPcopy Create free account
hub / github.com/Distributive-Network/PythonMonkey / test_join_utf8

Function test_join_utf8

tests/python/test_arrays.py:146–150  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

144
145
146def 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected