MCPcopy Index your code
hub / github.com/MagicStack/asyncpg / setUp

Method setUp

asyncpg/_testbase/__init__.py:439–446  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

437class ConnectedTestCase(ClusterTestCase):
438
439 def setUp(self):
440 super().setUp()
441
442 # Extract options set up with `with_connection_options`.
443 test_func = getattr(self, self._testMethodName).__func__
444 opts = getattr(test_func, '__connect_options__', {})
445 self.con = self.loop.run_until_complete(self.connect(**opts))
446 self.server_version = self.con.get_server_version()
447
448 def tearDown(self):
449 try:

Callers

nothing calls this directly

Calls 3

get_server_versionMethod · 0.80
setUpMethod · 0.45
connectMethod · 0.45

Tested by

no test coverage detected