/* test */
Cluster cluster = HFactory.getOrCreateCluster(clusterName, host);
assertDefaultValuesSchemaExist(cluster);
assertThat(cluster.describeKeyspace("beautifulKeyspaceName").getReplicationFactor(), not(2));
assertThat(cluster.describeKeyspace("beautifulKeyspaceName").getReplicationFactor(), is(1));
assertThat(cluster.describeKeyspace("beautifulKeyspaceName").getStrategyClass(),
not("org.apache.cassandra.locator.NetworkTopologyStrategy"));
assertThat(cluster.describeKeyspace("beautifulKeyspaceName").getStrategyClass(),
is("org.apache.cassandra.locator.SimpleStrategy"));
EmbeddedCassandraServerHelper.cleanEmbeddedCassandra();