()
| 9 | |
| 10 | |
| 11 | def test_get(): |
| 12 | items = [1, 2, 3] |
| 13 | result = [None] |
| 14 | pm.eval("(result, arr) => {result[0] = arr[1]}")(result, items) |
| 15 | assert result[0] == 2 |
| 16 | |
| 17 | |
| 18 | def test_get_length(): |
nothing calls this directly
no outgoing calls
no test coverage detected