(self)
| 65 | assert await p.expect_exact("3", async_=True) == 0 |
| 66 | |
| 67 | async def test_async_replwrap(self): |
| 68 | bash = replwrap.bash() |
| 69 | res = await bash.run_command("time", async_=True) |
| 70 | assert "real" in res, res |
| 71 | |
| 72 | async def test_async_replwrap_multiline(self): |
| 73 | bash = replwrap.bash() |
nothing calls this directly
no test coverage detected