Test with empty call list.
()
| 233 | |
| 234 | @pytest.mark.asyncio |
| 235 | async def test_stream_execute_tools_empty_calls(): |
| 236 | """Test with empty call list.""" |
| 237 | manager = MockToolManager() |
| 238 | results = [] |
| 239 | async for result in stream_execute_tools(manager, []): |
| 240 | results.append(result) |
| 241 | assert results == [] |
| 242 | |
| 243 | |
| 244 | @pytest.mark.asyncio |
nothing calls this directly
no test coverage detected