(self, pool_class=pg_pool.Pool,
connection_class=pg_connection.Connection, **kwargs)
| 372 | self._pools = [] |
| 373 | |
| 374 | def create_pool(self, pool_class=pg_pool.Pool, |
| 375 | connection_class=pg_connection.Connection, **kwargs): |
| 376 | conn_spec = self.get_connection_spec(kwargs) |
| 377 | pool = create_pool(loop=self.loop, pool_class=pool_class, |
| 378 | connection_class=connection_class, **conn_spec) |
| 379 | self._pools.append(pool) |
| 380 | return pool |
| 381 | |
| 382 | |
| 383 | class ProxiedClusterTestCase(ClusterTestCase): |
nothing calls this directly
no test coverage detected