Make several queries using a connection pool.
(self)
| 56 | asyncio.run(self._create_pool()) |
| 57 | |
| 58 | def test_query(self): |
| 59 | """ |
| 60 | Make several queries using a connection pool. |
| 61 | """ |
| 62 | asyncio.run(self._make_query()) |
| 63 | |
| 64 | def test_many_queries(self): |
| 65 | """ |
nothing calls this directly
no test coverage detected