MCPcopy
hub / github.com/urllib3/urllib3 / test_get_all_many

Method test_get_all_many

test/test_response.py:115–121  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

113 assert len(q) == 0
114
115 def test_get_all_many(self) -> None:
116 q = BytesQueueBuffer()
117 q.put(b"a")
118 q.put(b"b")
119 q.put(b"c")
120 assert q.get_all() == b"abc"
121 assert len(q) == 0
122
123 @pytest.mark.parametrize(
124 "get_func",

Callers

nothing calls this directly

Calls 3

putMethod · 0.95
get_allMethod · 0.95
BytesQueueBufferClass · 0.90

Tested by

no test coverage detected