()
| 1176 | |
| 1177 | |
| 1178 | def test_should_run_async(): |
| 1179 | assert not ip.should_run_async("a = 5", transformed_cell="a = 5") |
| 1180 | assert ip.should_run_async("await x", transformed_cell="await x") |
| 1181 | assert ip.should_run_async( |
| 1182 | "import asyncio; await asyncio.sleep(1)", |
| 1183 | transformed_cell="import asyncio; await asyncio.sleep(1)", |
| 1184 | ) |
| 1185 | |
| 1186 | |
| 1187 | def test_set_custom_completer(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…