(self)
| 20 | assert not router.rcvmore |
| 21 | |
| 22 | def test_basic_multipart(self): |
| 23 | a, b = self.create_bound_pair(zmq.PAIR, zmq.PAIR) |
| 24 | msg = [b'hi', b'there', b'b'] |
| 25 | a.send_multipart(msg) |
| 26 | recvd = b.recv_multipart() |
| 27 | assert msg == recvd |
| 28 | |
| 29 | |
| 30 | if have_gevent: |
nothing calls this directly
no test coverage detected