(self)
| 437 | class 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: |
nothing calls this directly
no test coverage detected