public void testKeyspaceCreatedFromDefinitionIfNotExists() throws Exception {
// Set up a connection manager
ConnectionManagerTester cm = getConnectionManager();
// Manually drop our Rhombus keyspace
cm.dropKeyspace(cm.getRhombusKeyspaceName());
// Manually drop the functional keyspace if it exists
CKeyspaceDefinition definition = JsonUtil.objectFromJsonResource(CKeyspaceDefinition.class
, this.getClass().getClassLoader(), "CKeyspaceTestData.js");
cm.dropKeyspace(definition.getName());