Test calling a simple coroutine.
(self)
| 6 | |
| 7 | class TestSync(TestCase): |
| 8 | def test_sync_simple(self): |
| 9 | """ |
| 10 | Test calling a simple coroutine. |
| 11 | """ |
| 12 | run_sync(asyncio.sleep(0.1)) |
| 13 | |
| 14 | def test_sync_nested(self): |
| 15 | """ |
nothing calls this directly
no test coverage detected