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

Function test_event_missing_data

tests/test_streaming.py:50–61  ·  view source on GitHub ↗
(sync: bool, client: Anthropic, async_client: AsyncAnthropic)

Source from the content-addressed store, hash-verified

48@pytest.mark.asyncio
49@pytest.mark.parametrize("sync", [True, False], ids=["sync", "async"])
50async def test_event_missing_data(sync: bool, client: Anthropic, async_client: AsyncAnthropic) -> None:
51 def body() -> Iterator[bytes]:
52 yield b"event: ping\n"
53 yield b"\n"
54
55 iterator = make_event_iterator(content=body(), sync=sync, client=client, async_client=async_client)
56
57 sse = await iter_next(iterator)
58 assert sse.event == "ping"
59 assert sse.data == ""
60
61 await assert_empty_iter(iterator)
62
63
64@pytest.mark.asyncio

Callers

nothing calls this directly

Calls 4

make_event_iteratorFunction · 0.85
bodyFunction · 0.70
iter_nextFunction · 0.70
assert_empty_iterFunction · 0.70

Tested by

no test coverage detected