(self)
| 825 | |
| 826 | class TestURLParsing: |
| 827 | def test_parse_port_only_url(self): |
| 828 | client = CopilotClient(connection=RuntimeConnection.for_uri("8080")) |
| 829 | assert client._runtime_port == 8080 |
| 830 | assert client._actual_host == "localhost" |
| 831 | assert client._is_external_server |
| 832 | |
| 833 | def test_parse_host_port_url(self): |
| 834 | client = CopilotClient(connection=RuntimeConnection.for_uri("127.0.0.1:9000")) |
nothing calls this directly
no test coverage detected