()
| 102 | |
| 103 | |
| 104 | def test_join_empty_array(): |
| 105 | items = [] |
| 106 | result = [None] |
| 107 | pm.eval("(result, arr) => {result[0] = arr.join()}")(result, items) |
| 108 | assert result[0] == '' |
| 109 | |
| 110 | |
| 111 | def test_join_no_arg_diff_types(): |
nothing calls this directly
no outgoing calls
no test coverage detected