()
| 56 | |
| 57 | |
| 58 | def test_sync_signal_async_receiver() -> None: |
| 59 | s = SyncSignal(lambda: None) |
| 60 | |
| 61 | with pytest.raises(AssertionError): |
| 62 | s.connect(mock.AsyncMock()) |
| 63 | |
| 64 | |
| 65 | async def test_async_signal() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…