()
| 343 | |
| 344 | |
| 345 | def test_valueOf(): |
| 346 | items = {'a': 10} |
| 347 | result = [0] |
| 348 | pm.eval("(result, obj) => {result[0] = obj.valueOf()}")(result, items) |
| 349 | assert items == {'a': 10} |
| 350 | assert result[0] is items |
| 351 | |
| 352 | # toString |
| 353 |
nothing calls this directly
no outgoing calls
no test coverage detected