(self)
| 27 | |
| 28 | class AsyncIOLoopTest(AsyncTestCase): |
| 29 | def get_new_ioloop(self): |
| 30 | io_loop = AsyncIOLoop(make_current=False) |
| 31 | return io_loop |
| 32 | |
| 33 | def test_asyncio_callback(self): |
| 34 | # Basic test that the asyncio loop is set up correctly. |
no test coverage detected