(
loop: asyncio.AbstractEventLoop, protocol: BaseProtocol
)
| 15 | |
| 16 | @pytest.fixture |
| 17 | def buffer( |
| 18 | loop: asyncio.AbstractEventLoop, protocol: BaseProtocol |
| 19 | ) -> WebSocketDataQueue: |
| 20 | return WebSocketDataQueue(protocol, limit=1, loop=loop) |
| 21 | |
| 22 | |
| 23 | class TestWebSocketDataQueue: |
nothing calls this directly
no test coverage detected