()
| 158 | |
| 159 | |
| 160 | def test_constructor_iterable(): |
| 161 | iterable = iter([1,2]) |
| 162 | constructor = pm.eval("(obj) => { return obj.constructor; }")(iterable) |
| 163 | assert repr(constructor).__contains__("<pythonmonkey.JSFunctionProxy object at") |
| 164 | |
| 165 | |
| 166 | def test_toPrimitive_stdin(): |
nothing calls this directly
no outgoing calls
no test coverage detected