mirror of https://github.com/python/cpython
asyncio.test_pep492: Add a test for asyncio.iscoroutinefunction
This commit is contained in:
parent
315b748cfc
commit
6d0c4c38d1
|
@ -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…
Reference in New Issue