Test load_async with nonexistent file returns defaults.
(self, tmp_path)
| 230 | |
| 231 | @pytest.mark.asyncio |
| 232 | async def test_load_async_nonexistent(self, tmp_path): |
| 233 | """Test load_async with nonexistent file returns defaults.""" |
| 234 | config = await MCPConfig.load_async(tmp_path / "nonexistent.json") |
| 235 | assert config.default_provider is not None |
| 236 | |
| 237 | @pytest.mark.asyncio |
| 238 | async def test_load_async_valid_file(self, tmp_path): |
nothing calls this directly
no test coverage detected