(self)
| 43 | assert type(actx) is self.Context |
| 44 | |
| 45 | def test_instance_subclass_second(self): |
| 46 | ctx = zmq.Context.instance() |
| 47 | actx = self.Context.instance() |
| 48 | ctx.term() |
| 49 | actx.term() |
| 50 | assert type(ctx) is zmq.Context |
| 51 | assert type(actx) is self.Context |
| 52 | |
| 53 | def test_recv_multipart(self): |
| 54 | async def test(): |