Test command execution.
(self)
| 170 | |
| 171 | @pytest.mark.asyncio |
| 172 | async def test_command_execution(self): |
| 173 | """Test command execution.""" |
| 174 | cmd = DummyCommand() |
| 175 | result = await cmd.execute() |
| 176 | |
| 177 | assert result.success is True |
| 178 | assert result.output == "Test executed" |
| 179 | |
| 180 | def test_format_output(self): |
| 181 | """Test output formatting.""" |
nothing calls this directly
no test coverage detected