(
mock_root, mock_linux, mock_invalid_version
)
| 21 | |
| 22 | @pytest.mark.asyncio |
| 23 | async def test_invalid_python_version( |
| 24 | mock_root, mock_linux, mock_invalid_version |
| 25 | ): |
| 26 | async with RecoverpyApp().run_test() as p: |
| 27 | await p.pause() |
| 28 | |
| 29 | assert p.app is not None |
| 30 | assert p.app.screen.name == "version-error-modal" |
| 31 | |
| 32 | |
| 33 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected