()
| 1019 | |
| 1020 | |
| 1021 | def test_should_run_async(): |
| 1022 | assert not ip.should_run_async("a = 5") |
| 1023 | assert ip.should_run_async("await x") |
| 1024 | assert ip.should_run_async("import asyncio; await asyncio.sleep(1)") |
| 1025 | |
| 1026 | |
| 1027 | def test_set_custom_completer(): |
nothing calls this directly
no test coverage detected