(self)
| 135 | con.close() |
| 136 | |
| 137 | def _connect(self): |
| 138 | try: |
| 139 | return self.driver.connect(*self.connect_args, **self.connect_kw_args) |
| 140 | except AttributeError: |
| 141 | self.fail("No connect method found in self.driver module") |
| 142 | |
| 143 | def test_connect(self): |
| 144 | con = self._connect() |
no outgoing calls