(self)
| 211 | ])) |
| 212 | |
| 213 | def make_connection(self): |
| 214 | c = self.connection_class(DefaultEndPoint('1.2.3.4'), cql_version='3.0.1', connect_timeout=5) |
| 215 | mocket = Mock() |
| 216 | mocket.send.side_effect = lambda x: len(x) |
| 217 | self.set_socket(c, mocket) |
| 218 | return c |
| 219 | |
| 220 | def make_options_body(self): |
| 221 | options_buf = BytesIO() |