Sha256: 3435b8dc9070ad595084a5d0f7677a5b559d626caedce70cb46dd85ed3884210
Contents?: true
Size: 451 Bytes
Versions: 3
Compression:
Stored size: 451 Bytes
Contents
require_relative '../../spec_helper' module Eurydice module Pelops describe Keyspace do before :all do @keyspace_name = "eurydice_test_space_#{rand(1000)}" @cluster = Eurydice.connect(host: ENV['CASSANDRA_HOST']) if @cluster.keyspaces.include?(@keyspace_name) @cluster.keyspace(@keyspace_name).drop! end @cluster end it_behaves_like 'Keyspace' end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
eurydice-1.2.6-java | spec/eurydice/pelops/keyspace_spec.rb |
eurydice-1.2.5-java | spec/eurydice/pelops/keyspace_spec.rb |
eurydice-1.2.4-java | spec/eurydice/pelops/keyspace_spec.rb |