()
| 152 | |
| 153 | |
| 154 | def test_toPrimitive_iterable(): |
| 155 | iterable = iter([1,2]) |
| 156 | toPrimitive = pm.eval("(obj) => { return obj[Symbol.toPrimitive]; }")(iterable) |
| 157 | assert repr(toPrimitive).__contains__("<pythonmonkey.JSFunctionProxy object at") |
| 158 | |
| 159 | |
| 160 | def test_constructor_iterable(): |
nothing calls this directly
no outgoing calls
no test coverage detected