(x)
| 309 | def test_eval_functions_roundtrip(): |
| 310 | # BF-60 https://github.com/Distributive-Network/PythonMonkey/pull/18 |
| 311 | def ident(x): |
| 312 | return x |
| 313 | js_fn_back = pm.eval("(py_fn) => py_fn(()=>{ return 'YYZ' })")(ident) |
| 314 | # pm.collect() # TODO: to be fixed in BF-59 |
| 315 | assert "YYZ" == js_fn_back() |
no outgoing calls
no test coverage detected