()
| 16 | |
| 17 | |
| 18 | def test_get_length(): |
| 19 | items = [1, 2, 3] |
| 20 | result = [None] |
| 21 | pm.eval("(result, arr) => {result[0] = arr.length}")(result, items) |
| 22 | assert result[0] == 3 |
| 23 | |
| 24 | |
| 25 | def test_missing_func(): |
nothing calls this directly
no outgoing calls
no test coverage detected