AsyncBoungLogger.sync_bl works outside of loops.
(self, abl, cl)
| 1530 | |
| 1531 | class TestAsyncBoundLogger: |
| 1532 | def test_sync_bl(self, abl, cl): |
| 1533 | """ |
| 1534 | AsyncBoungLogger.sync_bl works outside of loops. |
| 1535 | """ |
| 1536 | abl.sync_bl.info("test") |
| 1537 | |
| 1538 | assert [ |
| 1539 | CapturedCall(method_name="info", args=(), kwargs={"event": "test"}) |
| 1540 | ] == cl.calls |
| 1541 | |
| 1542 | @pytest.mark.asyncio |
| 1543 | async def test_protocol(self, abl): |
nothing calls this directly
no test coverage detected