(isolated_settings)
| 242 | |
| 243 | |
| 244 | async def test_status_reports_persisted_level(isolated_settings): |
| 245 | tmp_path = isolated_settings |
| 246 | await EFFORT_COMMAND.run("high", _ctx(tmp_path, ui=NullUIHost())) |
| 247 | out = await EFFORT_COMMAND.run("status", _ctx(tmp_path, ui=NullUIHost())) |
| 248 | assert out.message == f"Current effort level: high ({_HIGH_DESC})" |
| 249 | |
| 250 | |
| 251 | # --------------------------------------------------------------------------- # |
nothing calls this directly
no test coverage detected