mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
asyncio.test_pep492: Add a test for asyncio.iscoroutinefunction
This commit is contained in:
parent
315b748cfc
commit
6d0c4c38d1
1 changed files with 4 additions and 0 deletions
|
@ -107,6 +107,10 @@ class CoroutineTests(BaseTest):
|
|||
|
||||
self.assertTrue(asyncio.iscoroutine(FakeCoro()))
|
||||
|
||||
def test_iscoroutinefunction(self):
|
||||
async def foo(): pass
|
||||
self.assertTrue(asyncio.iscoroutinefunction(foo))
|
||||
|
||||
def test_function_returning_awaitable(self):
|
||||
class Awaitable:
|
||||
def __await__(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue