()
| 843 | existing_creator = testing.db.pool._creator |
| 844 | |
| 845 | async def async_creator(): |
| 846 | sync_conn = await greenlet_spawn(existing_creator) |
| 847 | return sync_conn.driver_connection |
| 848 | |
| 849 | async_creator = mock.Mock(side_effect=async_creator) |
| 850 |
nothing calls this directly
no test coverage detected