Test that default settings are applied correctly.
()
| 6 | |
| 7 | |
| 8 | def test_default_settings(): |
| 9 | """Test that default settings are applied correctly.""" |
| 10 | client = create_mcp_http_client() |
| 11 | |
| 12 | assert client.follow_redirects is True |
| 13 | assert client.timeout.connect == 30.0 |
| 14 | |
| 15 | |
| 16 | def test_custom_parameters(): |
nothing calls this directly
no test coverage detected