public void shouldBeToConnected() {
String clusterName = "TestCluster2";
String host = "localhost:9171";
DataLoader dataLoader = new DataLoader(clusterName, host);
Cluster cluster = dataLoader.getCluster();
assertThat(cluster.describeKeyspaces(), notNullValue());
assertThat(cluster.describeKeyspace("system"), notNullValue());
assertThat(cluster.describeKeyspace("system").getReplicationFactor(), is(1));
assertThat(cluster.describeKeyspace("system").getName(), is("system"));
}