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

Function test_join_no_arg

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

Source from the content-addressed store, hash-verified

95
96
97def 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
104def test_join_empty_array():

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected