(self, args, context)
| 2148 | |
| 2149 | class FakeCommand: |
| 2150 | async def handler(self, args, context): |
| 2151 | assert args == "" |
| 2152 | return CommandResult(message="Permission mode set to plan", refresh_runtime=True) |
| 2153 | |
| 2154 | async def fake_build_runtime(**kwargs): |
| 2155 | build_calls.append(kwargs) |
no test coverage detected