()
| 330 | def test_unwrap_py_function(): |
| 331 | # https://github.com/Distributive-Network/PythonMonkey/issues/65 |
| 332 | def pyFunc(): |
| 333 | pass |
| 334 | unwrappedPyFunc = pm.eval("(wrappedPyFunc) => { return wrappedPyFunc }")(pyFunc) |
| 335 | assert unwrappedPyFunc is pyFunc |
| 336 |
nothing calls this directly
no outgoing calls
no test coverage detected