(isolated_settings)
| 173 | |
| 174 | |
| 175 | async def test_arg_sets_max(isolated_settings): |
| 176 | tmp_path = isolated_settings |
| 177 | out = await EFFORT_COMMAND.run("max", _ctx(tmp_path, ui=NullUIHost())) |
| 178 | assert out.message == f"Set effort level to max: {_MAX_DESC}" |
| 179 | assert _persisted_effort() == "max" |
| 180 | |
| 181 | |
| 182 | async def test_arg_auto_clears(isolated_settings): |
nothing calls this directly
no test coverage detected