(self)
| 849 | assert client._is_external_server |
| 850 | |
| 851 | def test_invalid_url_format(self): |
| 852 | with pytest.raises(ValueError, match="Invalid cli_url format"): |
| 853 | CopilotClient(connection=RuntimeConnection.for_uri("invalid-url")) |
| 854 | |
| 855 | def test_invalid_port_too_high(self): |
| 856 | with pytest.raises(ValueError, match="Invalid port in cli_url"): |
nothing calls this directly
no test coverage detected