(self)
| 631 | ) |
| 632 | |
| 633 | async def test_asend_only_async_receivers(self): |
| 634 | async_handler = AsyncHandler() |
| 635 | signal = dispatch.Signal() |
| 636 | signal.connect(async_handler) |
| 637 | |
| 638 | result = await signal.asend(self.__class__) |
| 639 | self.assertEqual(result, [(async_handler, 1)]) |
| 640 | |
| 641 | async def test_asend_robust_only_async_receivers(self): |
| 642 | async_handler = AsyncHandler() |
nothing calls this directly
no test coverage detected