Test getting output from non-existent bash process.
()
| 209 | |
| 210 | @pytest.mark.asyncio |
| 211 | async def test_bash_output_nonexistent(): |
| 212 | """Test getting output from non-existent bash process.""" |
| 213 | print("\n=== Testing Output From Non-existent Process ===") |
| 214 | |
| 215 | bash_output_tool = BashOutputTool() |
| 216 | result = await bash_output_tool.execute(bash_id="nonexistent123") |
| 217 | |
| 218 | assert not result.success |
| 219 | assert "not found" in result.error.lower() |
| 220 | print(f"Expected error: {result.error}") |
| 221 | |
| 222 | |
| 223 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected