(client, name, strategy, optionName, optionValue)
| 57 | } |
| 58 | |
| 59 | function checkKeyspace(client, name, strategy, optionName, optionValue) { |
| 60 | const m = client.metadata; |
| 61 | const ks = m.keyspaces[name]; |
| 62 | checkKeyspaceWithInfo(ks, strategy, optionName, optionValue); |
| 63 | } |
| 64 | |
| 65 | utils.series([ |
| 66 | client.connect.bind(client), |
no test coverage detected