(self)
| 1295 | assert client.base_url == "https://example.com/from_setter/" |
| 1296 | |
| 1297 | def test_base_url_env(self) -> None: |
| 1298 | with update_env(OPENCODE_BASE_URL="http://localhost:5000/from/env"): |
| 1299 | client = AsyncOpencode(_strict_response_validation=True) |
| 1300 | assert client.base_url == "http://localhost:5000/from/env/" |
| 1301 | |
| 1302 | @pytest.mark.parametrize( |
| 1303 | "client", |
nothing calls this directly
no test coverage detected