Test that a background task cannot be chained.
(self)
| 1760 | self.order.append("private") |
| 1761 | |
| 1762 | async def bad_chain1(self): |
| 1763 | """Test that a background task cannot be chained.""" |
| 1764 | await self.background_task() |
| 1765 | |
| 1766 | async def bad_chain2(self): |
| 1767 | """Test that a background task generator cannot be chained.""" |
no test coverage detected