(
mock_root, mock_not_linux, mock_valid_version
)
| 32 | |
| 33 | @pytest.mark.asyncio |
| 34 | async def test_not_linux( |
| 35 | mock_root, mock_not_linux, mock_valid_version |
| 36 | ): |
| 37 | async with RecoverpyApp().run_test() as p: |
| 38 | await p.pause() |
| 39 | |
| 40 | assert p.app is not None |
| 41 | assert p.app.screen.name == "linux-error-modal" |
| 42 | |
| 43 | await p.click("#ok-button") |
| 44 | await p.pause() |
| 45 | |
| 46 | assert p.app.screen.name == "params", "params" |
| 47 | |
| 48 | |
| 49 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected