MCPcopy
hub / github.com/anthropics/anthropic-sdk-python / test_request_timeout

Method test_request_timeout

tests/test_client.py:328–335  ·  view source on GitHub ↗
(self, client: Anthropic)

Source from the content-addressed store, hash-verified

326 raise AssertionError()
327
328 def test_request_timeout(self, client: Anthropic) -> None:
329 request = client._build_request(FinalRequestOptions(method="get", url="/foo"))
330 timeout = httpx.Timeout(**request.extensions["timeout"]) # type: ignore
331 assert timeout == DEFAULT_TIMEOUT
332
333 request = client._build_request(FinalRequestOptions(method="get", url="/foo", timeout=httpx.Timeout(100.0)))
334 timeout = httpx.Timeout(**request.extensions["timeout"]) # type: ignore
335 assert timeout == httpx.Timeout(100.0)
336
337 def test_client_timeout_option(self) -> None:
338 client = Anthropic(

Callers

nothing calls this directly

Calls 2

FinalRequestOptionsClass · 0.90
_build_requestMethod · 0.80

Tested by

no test coverage detected