()
| 232 | handle_lpush_response(clients[-1]) |
| 233 | |
| 234 | def init_lpush(): |
| 235 | global clients |
| 236 | for i in range(numclients): |
| 237 | clients.append(Client('127.0.0.1', 6379)) |
| 238 | for i in range (10): |
| 239 | handle_lpush_response(clients[-1]) |
| 240 | #handle_set_response(clients[-1], None) |
| 241 | |
| 242 | scan_client = Client('127.0.0.1', 6379) |
| 243 | scan_client.scan(0, count=500, callback=scan_callback) |
| 244 | |
| 245 | del_client = Client('127.0.0.1', 6379) |
| 246 | handle_del_response(del_client) |
| 247 | |
| 248 | def main(test, flush): |
| 249 | clear_ops() |
nothing calls this directly
no test coverage detected