()
| 123 | |
| 124 | |
| 125 | def test_join_with_sep(): |
| 126 | items = [1, 2, 3] |
| 127 | result = [None] |
| 128 | pm.eval("(result, arr) => {result[0] = arr.join('-')}")(result, items) |
| 129 | assert result[0] == '1-2-3' |
| 130 | |
| 131 | |
| 132 | def test_join_none(): |
nothing calls this directly
no outgoing calls
no test coverage detected